TSV_TNEW_PAGE_ALLOC_FAILED dump in WDBU: Assortment listing

Hi all,
when my SD consultants are executing WDBU either in background or foreground  we are getting dump:
TSV_TNEW_PAGE_ALLOC_FAILED
details are as follows:
No more storage space available for extending an internal table.
Error anslysis
The internal table "???" could not be further extended. To enable
error handling, the table had to be delete before this log was written.
As a result, the table is displayed further down or, if you branch to
the ABAP Debugger, with 0 rows.
At the time of the termination, the following data was determined for
the relevant internal table:
Memory location: "Session memory"
Row width: 1032
Number of rows: 6729552
Allocated rows: 6729552
Newly requested rows: 8 (in 1 blocks)
how to correct the error:
The amount of storage space (in bytes) filled at termination time was:
Roll area...................... 2718352
Extended memory (EM)........... 5002852296
Assigned memory (HEAP)......... 2000090624
Short area..................... " "
Paging area.................... 24576
Maximum address space.......... 4294967295
earlier the values for
ztta/roll_extension and abap/heap_area_total was 2 GB
for corrections i have made changes in the parameters as follows:
ES/TABLE                                    SHM_SEGS
ztta/roll_extension                         5000000000
abap/heap_area_total                        5000000000
I have AIX OS and the RAM is 16 GB on this particualr application server, which is central Instance.
the swap space allocated is 40 GB.
please tell me what to do to resolve this particular issues.
regards,
Priya

The selection criteria when you go to WBDU T-code are:
Assortment User:
sales organisation - we are specifying it
Distribution channel - we are specifying it
customer no. - site - we are just specifying one site
Assortment List:
Assortment List Type
Control Data:
Donot use cycle - we are ticking this option.
Generate Merged Versions
Parallel Processing
Max Number Of processes
Logon/ server Group - we are specifying the server the instance server.
what else can the selection criteria be narrowed down to.
Also in the dump when it says "The internal table "???" could not be further extended"what is table ??? means.
When i was going through SAP Notes i found few notes : 542669, 959104 , 740976. But these are applicable to ECC 500 and 470.mine is ECC 6.0 and our APPL level is 12.
What do you think can be done in this situation..
we are using just one site.
Regards,
Priya

Similar Messages

  • No change triggered for assortment list IDOC

    Dear all expert,
    I'm facing a problem and below is issue reproduction steps.
    1. Article 'A' listed to Assortment 'ASM01' which is assigned 3 sites as assortment users.
    2. I executed WDBI for assortment list initialization. 3 IDOC files are generated successfully.
    3. Now, I unassigned one of the site from the assortment ASM01.
    4. I execute WDBU for assortment list IDOC change message. No IDOC is generated for this site.
    Any idea?
    Thank you very much!
    Regards,
    Wso

    Hi Tobias,
    Thanks for your reply!
    Actually i'm newbie on SAP Retail and now looking at listing and assortment stuff. I've configured the Assortment List Profile with checkbox 'Deletions for Listing' selected. Below is the SAP help explanation:
    "Indicator: Generate Deletion Records for Listing
    When you set this indicator, special material header records, carrying the information from the store retail system about the deletion performed, can be sent during deletions of assortment assignments between plant and assortment or during physical deletions of listing conditions in the change version of the assortment list. In the IDoc, these materials are marked with the change indicator AENKZ = 'DELE' in segment E1WBB01."
    So i wonder a IDOC file will be generated for the unassigned site with change indicator DELE for all articles listed to that site.
    Thanks again!
    Regards,
    Wso

  • Assortment List - Price List

    Hello,
    I have an article with valid two prices (condition VKP0):
    -  sales organization and distribution channel (Table A073);
    -  Price list (Table A155).
    In Access Sequences and Filter Settings for Condition Types (assortment list), the price list has priority.
    When you generate the assortment list by trabsacção WDBM the system determines the price set for the sales organization.
    Have ideas to solve this problem?
    Thanks,
    Vera Monteiro

    Hi Vera
    I am facing the same/a very similar issue.  A colleague suggested a possible solution which didn't resolve it for me but it might be worth checking if it works for your scenario?
    How are you assigning the site to the price list - centrally in the site customer's sales area view under pricing or by material group (merchandise category)?
    Please check the IMG:
    Sales and Distribution -> Basic Functions -> Pricing -> Pricing Control -> Define Access Sequence:
    Maintain Access Sequence
    Select VKP0 Accesses view
    Select Table 155 Fields view
    for condition PLTYP the Doc.field should be PLTYP if you assign site to price list centrally, but if you do it by material group it should be PLTYP_P.
    I am still working on my issue so I will let you know if/when I find a solution.  Please can you let me know if you resolve it first?

  • Assortment list: Missing data values & structure modification

    Hello all,
    I have the following problem:
    1. I'm using the assortment list (not HPR version) with the structure WBBP_MAX to download data to the local system that is connected to a POS system. I know that this structure is a really massive one, but I'm planning to reduce it (see my number 2 question). The TC I'm using is WDBI\WDBM. Release version ECC6.
    When I'm executing the assortment list initialization\manual I have a missing values problem when displaying the AL for example: the purchasing prices (E1WBB08 - KWERT) appears in the generated Idoc (basic type WBBDLD04) but when I'm displaying the created assortment list, the values for the sales price do not appear . In additional, in the SAP Retail store, the sales price appear for the article overview option but in the store order\assortment list option the price do no appear.
    2. I want to create my own structure as a copy of structure WBBP_MAX. I've copied the structure and started mapping the fields I needed. My question is - is it enough to change the structure and assign the new structure to my AL profile or do I have to modify the RWDBBI_ALV program?
    Regards,
    Mikio

    This code works. How does your code differ in significant ways?
    <?xml version="1.0"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
      <mx:Script>
        <![CDATA[
          import mx.collections.ArrayCollection;
          [Bindable] private var ac:ArrayCollection = new ArrayCollection([
            {id: 1, label: "test1"},
            {id: 20, label: "test20"},
            {id: 3, label: "test3"},
            {id: 40, label: "test40"}
        ]]>
      </mx:Script>
      <mx:List dataProvider="{ac}">
        <mx:itemRenderer>
          <mx:Component>
            <mx:HBox>
              <mx:Label text="{data.id}"/>
              <mx:Label text="{data.label}"/>
            </mx:HBox>
          </mx:Component>
        </mx:itemRenderer>
      </mx:List>
    </mx:Application>
    If this post answers your question or helps, please mark it as such.
    Greg Lafrance - Flex 2 and 3 ACE certified
    www.ChikaraDev.com
    Flex / AIR Development, Training, and Support Services

  • Assortment List IDoc - WBBDLD03 Taxcode Segment not creating.

    Hi All,
    What configurations are required to send the Tax code from Assortment List Idoc 16th Segment.  Pls. let me know the steps of configuration verification so that it can be send through Assortment List IDOC WBBDLD03 or 6
    Regards
    Ashok

    Hi Milan
    Pls. follow these steps.. for Sending the Tax Codes.
    NOTE : Steps for Tax Code Flow to POS
    Step 1 : MM42 - Basic Data - Check the following
                   Tax Class - (With Value)
                   Tax Data - (Country - CA, Tax Category - CTXJ Tax Jurisdiction, Tax Classification - 1 Taxable (0-Non Taxable, 1 Taxable Etc)).  Taxs Relevant to Article Taxes.
    Step 1.1 : MM42 - Basic Data - Check the following
                      Check for the Assortment List Type, Listing of Assortment to Site in Listing Tab, Price of Article.
    Step 2 : WB02 - Customer Tab - Billing Sales Area - Tax Classification - (1-Liable for Taxes)
    Tax code is pick up from Site - Address (Country, Region Combination of Site master to Assortment List)
    Step 3 : VK11 - Condition Type - CTXJ
    This Tax Condition should have a Combination records for Tax Codes in the List.  (For Country / State / Customer Classification / Article Classification 1. The table should contain the records for 'CA' - (Canada, Region, Tax Class Cust, Tax Class Artic, Valid from, Valid To, Tax Code)
    Step 4 : IMG -> Sales and distribution -> Basic Function -> Pricing -> Pricing Control -> Define and Assign Pricing Procedure -> Maintain pricing procedures (V/08)
                   V/08 - Pricing - VKP001 - Sales Price Princing Branch will carry the Pricing Condition to Outbound Idoc WBBDLD.
                   Solution : Changed the VKP001 Pricing procedure having the standard tax condition MWSI, this one changed to CTXJ which is of Canadian Tax Condition.
    Step 5 : IMG -> Logistics General -> Assortment -> Assortment List -> Maintain Profile for Assortment List -> Selection the Assortment Type -> Check the Condition Type Group
    Step 6 : IMG  -> Sales and distribution  -> Pos Interface  -> POS Outbound  -> Maintain POS Condition Type Group
                   This table is by default Maintained with below Condition types
                   MWSI - Output Tax
                   MWST - Output Tax
                   VKAO - Promo SP IS-R
                   VKPO - Sales Price
                   Add Additional Condition types which need to send to POS including the condition type of Tax.of Canada
                   CTXJ - Tax Jurisdiction Code.
                   KA02 - Promotional Discounts % 1
                   KA04 - Promotional Discount MD 1
    Regards
    Ashok

  • Article assortment listing

    Hi Gurus
    While performing article assortment listing, on creation of new site thesystem is blocking other users from using the articles. We have been
    informed that there is release note in SAP IS Retail version ECC 6.0,
    where assortment listing can be done for a site without effecting article
    transaction for other sites. Please furnish as with the release note
    reference or an alternative suggestion.
    Steps for Reconstruction                
    1. Site creation - WB01
    2. WSOA2 - For assortment listing and maintenance of article for a new
    site ( System will generate a background job for an assortment of all
    articles to new site. )
    Thk
    Sachin Vispute
    Edited by: sachin  vispute on Jun 26, 2009 6:55 AM

    Thanks,
      If so, then what is the diffeerence between listing through assortmrent and listing through layout. Need to do listing through layout / layout module. How to do that with out creating assortment.
    Is it possible I list through layout without entering assortmwnt in WLAMN.
    Thanks again
    Varatharaj Jayraman

  • SAP Retail Store - Store Order - Assortment List

    G'day,
    In the SAP Retail Store (SRS) when selecting the "Store Order" "Assortment List" option I've got a request to add columns to the assortment list ( I've done this via Badi IF_EX_WSAO_DISP_EXPAND ).
    The challenge now is to make fields within the added columns available for user input. (Currently the fields is only displayed).
    Example: I've added columns X, Y and Z in the assortment list.
    There are twenty lines in the assortment list and for each line the field in column Y must except input from the user. When the Post Order button is pushed a ME22 transaction must be submitted for each item in the assortment list.
    I've copied the internet service for WSTA to ZWSTA but don't have sufficient HTML knowledge to change the HTML page to achieve the above.
    Can you please help with a solution.
    Thanks, points will be awarded.

    Hi Mohan,
    Thanks for the useful link you shared.
    But I am looking for specific configuration and master data set up required for store order creation scenario where " Warehouse stock is created if stock exists else third party order is created"
    This option is activated in POS interface inbound profile for store order control by selecting document categorydefault as "A - Warehouse order if stock exists, otherwise third-party order"
    Just wanted to understand how this option works by requiring what kind of configuration and master data settings.
    Any further suggestions will be really helpful. 
    Regards,
    Debraj

  • Assortment List IDoc : % Discount Promotion Condition Missing

    Dear All,
    We are working with in IS-Retail Assortment List IDoc for transferring article data to stores (SAP Triversity system). We are facing one problem while transferring the promotional discounts to the POS. We are able to transfer merchandise category level discounts using IDoc WPDREB, but when we go for transferring %discounts (Condition Type KA02) via Assortmnet List (WBBDLD.WBBDLD03) IDoc, it fails to generate the pricing condition (E1WBB07 and E1WBB08). However, we are able to populate the above mentioned segments while working with the condition types VKA0 (Special Price) and KA04 (Absolute Discount). Has anyone faced a problem like this before? Do we need to do any specific setting for %discount condition types?
    Thanks in Anticipation,

    Hi  Somnath 
    sorry for the delay. As it looks like a detailed analyse is necessary.
    Please open an customer message with your question on the IS-R-BD-RPC  component.
    Some one from SAP will take care about the issue. Ensure you have an open system and access data and an example.
    I recommend to post the solution in forum after that.
    regards
    Björn
    Edited by: Björn Panter on May 21, 2008 2:15 PM

  • POS outbound assortment list - deleted EAN's/delisted articles

    hi All,
              does anyone know whether it is possible to send a deletion indicator down to POS for the assortment list? IT seems that deleted EAN's trigger a change pointer but WBBDLD IDoc only contains the updated article details only. Also, when an article is delisted from a site, is it possible to send a deletion indicator as well?
    REgards,
    James

    Hi James,
    in the assortment list customizing it is possible to activate sending of delisted articles.
    Please check the the profile parameters.
    SPRO -> Logistics - General -> Assortment -> Assortment List -> Maintain Profile for Assortment Lists
    Here the flag
    DELETION for LISTINGS
    For details please look at documentation.
    If you are using the HPR (High performance Retailing) Assortment list, this will be not possible. In this case you have to initialize the list. Deleted articles will not be a part.
    regards
    Björn

  • POS assortment list - promotion price changes

    Hi All,
            does anyone know whether its possible to trigger change messages when a promotion price is deactivated? I tried deactivating a promotion for a specific article then executing the assortment list change message program to generate idoc but it resends the article without the promo price. I need to know the promo number that was associated with the article, is this possible?
    Regards,
    James
    Message was edited by:
            James Tran

    Hi James,
    The promotion articles, prices, and period are defined when the promotion is created. Depending on the type of promotion that is used, the prices for a price list or distribution chain are then activated. Depending on the activation type, the promotion price of the individual article is determined with or without the price list.
    The promotion category is the same as the promotion type and is a classification characteristic in the information system. This allows promotions in the classification system to be indirectly classified according to promotion types. You must maintain precisely those promotion categories which you wish to create subsequently as promotion types. The text describing the type and category should be identical.
    Bye,
    Muralidhara

  • Short dump with Where-used list

    Hi All,
    I'm making some research on specific InfoObjects, and in some cases I want to know where are they being used, but when I try to use the icon for "Where-used list using Data Warehouse" I end up with an error, a short dump.
    Message class is: RSQBW
    Trigger Location of Runtime Error:
    Program: CL_RSQ_ISET_SERVICE===========CP
    Include: CL_RSQ_ISET_SERVICE===========CM016
    Row: 136
    Module Type: (METHOD)
    Module Name: EXTEND_FIELD_BUFFER
    Does any one can help me to understand why is this going on and how to solve this?
    Thank you!!
    Miriam

    Hi Miriam
    In the short dump you should also see the name of the infoset in question.
    You probably have to adjust the infoset in transaction RSISET and they try to run the where used list again.
    Best Regards,
    Vincent

  • TSV_TNEW_PAGE_ALLOC_FAILED Dump in CRM

    Hi Experts,
    While accessing the custom componenet in CRM system we are getting the dump TSV_TNEW_PAGE_ALLOC_FAILED saying No more storage space available for extending an internal table. And we are not getting this dump every time we access this componenet. We get it on a particular time. And when we checked the shared memory in SHMA during that time, Free memeory is very less. Automatically after sometime the free memory gets increased. Then the dump does not occur. What could be the reason. Do we need to change any memory parameter. Kindly clarify.
    Thanks & Regards,
    Sundara.

    The error TSV_NEW_PAGE_ALLOC_FAILED means that more memory was requested
    because the program needed to expand an internal table, but none is available.
    When Extended Memory is used up, the process will go into PRIV mode as it starts using Heap Memory  (or vise-versa).  No other user will be able to use this wp while it is in PRIV mode.  If there is enough heap for it to finish, you will not see the error
    TSV_NEW_PAGE_ALLOC_FAILED and the wp will be freed.
    Are you using a 64-bit or a 32-bit system if it is a 64 bit system then refer to note 146289. This note shows how to Implement the SAP profile parameters.
    See SAP Note 425207 for parameter limitations
    Setting of em/initial_size_MB usually depends on the physical RAM on the server and if you have any other instances on that same server. According to note #146289 this can be increased to very high
    values if there is sufficent RAM on the box.
    Also please review the following notes:
    20527  Runtime error TSV_TNEW_PAGE_ALLOC_FAILED
    217262  Runtime error text for TSV_TNEW_PAGE_ALLOC_FAILED
    185185  Application: Analysis of memory bottlenecks
    417307     Extractor package size: Collective note for applica
    Regards,
    Gervase

  • TSV_TNEW_PAGE_ALLOC_FAILED  Dump in Production BW 3.5 system

    Hi Basis Gurus,
    In our production BW 3.5 system we are getting dump in ST22.
    The dump is TSV_TNEW_PAGE_ALLOC_FAILED
    Please let me know what could be the reason for this dump and why we are getting it.
    I tried searching in service market place and there we can find lot of things related to this dump.But not sure which one is specificaly related to this dump.
    Our system details are as follows
    BW 3.5
    Solaris OS
    Oracle Database.
    Please help me in resolving this dump.
    Regards,
    Anil.

    Hello Anil,
    what is the frequency of these dumps.
    If the dump once in a while,you can simply ignore it
    If frequency is more....you will need to reasrch a bit before increasing the paging memory as suggested previously
    Just check what program is causing the dump,is it SAP standard program or a z program created by your developers.
    If it is a SAP standard program just search on market place and look if any new version of the program exists which is tuned better and which consumes less memory
    If it is a z program ask your developer to tune the program(this can be a highly cause of this dump as programs created usually consume a lot of memory due to which this dump occurs)
    If none of these help,go for increase in the paging memory as previusly suggested
    Rohit

  • TSV_TNEW_PAGE_ALLOC_FAILED dump

    HI ,
    The user is getting the TSV_TNEW_PAGE_ALLOC_FAILED error while running a  some job
    The amount of storage space (in bytes) filled at termination
    Roll area...................... 6221072
    Extended memory (EM)........... 2002738624
    Assigned memory (HEAP)......... 3000059984
    Short area..................... " "
    Paging area.................... 32768
    Maximum address space.......... 4294967295
    he is getting this error while executing when ever he runs that job

    It is a z job of some archiving for PP_Order
    For this user only we are getting this error for that perticular job.
    The systme is ECC 6.0 Ehp6  oracle database .
    SAP kernel....... 720
    Memory consumption is
    Roll.... 6221072
    EM...... 2002738624
    Heap.... 3000059984
    Page.... 32768
    MM Used. 4737199616
    MM Free. 254668992
    These are the current peremeters which were configured
    abap/buffersize               2000000
    em/initial_size_MB      40960http://
    ztta/roll_extension      2000000000
    ztta/roll_area                7000000
    abap/heap_area_nondia         3000000000
    in our system.
    ================
    Category               Resource Shortage
    Runtime Errors         TSV_TNEW_PAGE_ALLOC_FAILED
    Date and Time          05.08.2014 16:44:40
    |Short text                                                                                        |
    |    No more storage space available for extending an internal table.                              |
    |What happened?                                                                                    |
    |    You attempted to extend an internal table, but the required space was                         |
    |    not available.                                                                                |
    |What can you do?                                                                                  |
    |    Note which actions and input led to the error.                                                |
    |                                                                                                  |
    |    For further help in handling the problem, contact your SAP administrator                      |
    |    .                                                                                             |
    |                                                                                                  |
    |    You can use the ABAP dump analysis transaction ST22 to view and manage                        |
    |    termination messages, in particular for long term reference.                                  |
    |                                                                                                  |
    |    Try to find out (e.g. by targetted data selection) whether the                                |
    |    transaction will run with less main memory.                                                   |
    |                                                                                                  |
    |    If there is a temporary bottleneck, execute the transaction again.                            |
    |    -                                                                                             |
    |                                                                                                  |
    |    If the error persists, ask your system administrator to check the                             |
    |    following profile parameters:                                                                 |
    |                                                                                                  |
    |    o  ztta/roll_area            (1.000.000 - 15.000.000)                                         |
    |           Classic roll area per user and internal mode                                           |
    |           usual amount of roll area per user and internal mode                                   |
    |    o  ztta/roll_extension       (10.000.000 - 500.000.000)                                       |
    |           Amount of memory per user in extended memory (EM)                                      |
    |    o  abap/heap_area_total      (100.000.000 - 1.500.000.000)                                    |
    |           Amount of memory (malloc) for all users of an application                              |
    |           server. If several background processes are running on                                 |
    |           one server, temporary bottlenecks may occur.                                           |
    |           Of course, the amount of memory (in bytes) must also be                                |
    |           available on the machine (main memory or file system swap).                            |
    |           Caution:                                                                               |
    |           The operating system must be set up so that there is also                              |
    |           enough memory for each process. Usually, the maximum address                           |
    |           space is too small.                                                                    |
    |           Ask your hardware manufacturer or your competence center                               |
    |           about this.                                                                            |
    |           In this case, consult your hardware vendor                                             |
    |    abap/heap_area_dia:        (10.000.000 - 1.000.000.000)                                       |
    |           Restriction of memory allocated to the heap with malloc                                |
    |           for each dialog process.                                                               |
    |    Parameters for background processes:                                                          |
    |    abap/heap_area_nondia:        (10.000.000 - 1.000.000.000)                                    |
    |           Restriction of memory allocated to the heap with malloc                                |
    |           for each background process.                                                           |
    |    Other memory-relevant parameters are:                                                         |
    |    em/initial_size_MB:         (35-1200)                                                         |
    |           Extended memory area from which all users of an                                        |
    |           application server can satisfy their memory requirement.                               |
    |Error analysis                                                                                    |
    |    The internal table "\FUNCTION-POOL=SCD5\DATA=DATA_TAB_POS" could not be further               |
    |     extended. To enable                                                                          |
    |    error handling, the table had to be delete before this log was written.                       |
    |    As a result, the table is displayed further down or, if you branch to                         |
    |    the ABAP Debugger, with 0 rows.                                                               |
    |                                                                                                  |
    |    At the time of the termination, the following data was determined for                         |
    |    the relevant internal table:                                                                  |
    |                                                                                                  |
    |    Memory location: "Session memory"                                                             |
    |    Row width: 1568                                                                               |
    |    Number of rows: 424196                                                                        |
    |    Allocated rows: 424196                                                                        |
    |    Newly requested rows: 8 (in 1 blocks)                                                         |
    |How to correct the error                                                                          |
    |    The amount of storage space (in bytes) filled at termination time was:                        |
    |                                                                                                  |
    |    Roll area...................... 6221072                                                       |
    |    Extended memory (EM)........... 2002738624                                                    |
    |    Assigned memory (HEAP)......... 3000059984                                                    |
    |    Short area..................... " "                                                           |
    |    Paging area.................... 32768                                                         |
    |    Maximum address space.......... 4294967295                                                    |
    |                                                                                                  |
    |    If the error occures in a non-modified SAP program, you may be able to                        |
    |    find an interim solution in an SAP Note.                                                      |
    |    If you have access to SAP Notes, carry out a search with the following   

  • Strange TSV_TNEW_PAGE_ALLOC_FAILED dump...

    Hi guys!
    I have this weird problem:
    I have a program that does some updates to standard tables. The program runs ok, but if I comment the "update" lines, the execution ends with this dump: TSV_TNEW_PAGE_ALLOC_FAILED
    With the UPDATE doesn't cancel, without the update DOES cancel...
    Do you have any idea?????
    Thanks in advance!
    Bet

    Hi,
    probably there is a loop with reading data in an internal table:
    - without update the process does not terminate at all or nearly does not 
    - with update the process terminates soon.
    With kind R´regards
    Walter Habich

Maybe you are looking for

  • Searching on data element

    Is there a way to perform a sort and a search against the data element of my key / value pair? I have a DB that I use to track some remote files. I have an ID that I use as the key to my key value pair that points me to a given file. This must be uni

  • 10.1.3.1.0 topology memebers could not be restarted due to Errors:

    I have Windows Oracle Application Server 10g (10.1.3.1.0) Release 3 with (10.1.3.5.0) Patch Set 5 As I was getting "java.lang.NoClassDefFoundError: org/apache/log4j/Category" I created my own my.apache.commons.logging shared-lib for commons-logging v

  • SB Live! WDM occasional droning sound with

    Hi, My SB Li've! WDM came with Dell and works fine. However, when playing certain games that make use of EAX like KOTOR2 or RTW, occassionally the sound will be suddenly replaced by an irritating droning sound that overrides all the background sound

  • Cannot configure SPA112

    I just purchased the SPA112 earlier and cannot configure this unit, not sure if it is a defective unit, please provide assistance. Trying to configure using browser: - Connect ethernet cable from my computer to the internet port on the SPA112, cannot

  • Fbl_impressive Enterprise 10074 - Error 0x80246017

    how to download/install after this error?