Alternative for Pooled table M_VMVAC in ECC 5 version

Hi,
Pooled table M_VMVAC in version 3.1i does not exist
in ECC 5.Can anyone tell me the alternative for this?
Pool/cluster is M_VMVA in 3.1i version
Helpful answers will be rewarded
Thanks
Kiran

Check data base view V_VMVAC.
Regards
Sridhar

Similar Messages

  • Alternative for Pooled table M_VMVLA in ECC 5 version

    Hi,
    Pooled table M_VMVLA in version 3.1i does not exist
    in ECC 5.Can anyone tell me the alternative for this?
    <b>Pool/cluster  M_VMVL in 3.1i version</b>
    Helpful answers will be rewarded
    Thanks
    Kiran

    Hai Kiran
    Check the following Code in program 'RVV50L21'.
    the following Code is present in ECC 5.0
    select * from <b>shp_idx_gdsi</b> where wadat in i_datum     "470
                                     and   vstel in i_vstel
                                     and   route in i_route
                                     and   vbeln eq vttp-vbeln.
    simillar code in 3.1 version is
    select * from <b>m_vmvla</b> where wadat in i_datum
                           and   vstel in i_vstel
                           and   route in i_route
                           and   vbeln eq vttp-vbeln.
    Replacent table for m_vmvla is shp_idx_gdsi
    Regards
    Sreeni

  • Replacement for Pooled table:  M_VMVME

    Hi,
      Can anyone suggest what is the replacement for the pooled table M_VMVME in ECC 6.0 version.
    Thanks,
    Sheetal

    Sheetal
    The replacement for this pooled table is SHP_IDX_GDRC.
    Please check out Note: 570991 & 479457 or look at program ZBEY_COMPLETE_INBOUND_DELIVERY.
    You may need to replace your cersion of the program with the new one.
    Regards
    Carl Cavendish-Davies
    SAP Technical Manager

  • Data Maintenance For Pooled Table

    Hi,
    I have to make table maintenance for pooled table T052S , Can I make table maintenace , if I have access key, is it feaseable, as I have some requirement , which is to be done.  or is there any other method by which user can maintain this table except through SPRO.
    thanks
    bobby

    We're on ECC 5.0 here and this table already has a maintenance transaction defined - OBB9.
    This is how SAP sets up maintenance for a lot of the config tables:
         Define a Maintenance View - e.g. V_T052S
         Define a Maintenance Dialog
         Define a transaction variant on SM30
    A user can be given maintenance access for only OBB9

  • Alternative for  Function module 'F4_CHOOSE_MCID' in ECC 5.0?

    Hi,
    Can any one tell me the Alternative for  Function module <b>'F4_CHOOSE_MCID'</b> in ECC 5.0?
    Helpful answers will be rewarded.
    Thanks
    Kiran

    Hi,
    Please use this FM UMC_NOTIF_SEND_EMAIL to send an email in ECC 5.0.
    Regards,
    Ferry Lianto

  • Cluster and pool tables

    I make a join with a pool table the compiler writes
    Für Pool-Tabellen, Cluster-Tabellen und Projektions-Views ist JOIN
    for pool-Tables, Cluster-Tables and Projections-View is no JOIN allowed.
    What can I do to read the data from the table a005 in join.
    thanks.
    Waseem

    >
    Ahmad Waseem wrote:
    > What can I do to read the data from the table a005 in join.
    > thanks.
    > Waseem
    Hello Waseem,
    Ans is DONOT use JOIN. You have to use FOR ALL ENTRIES.
    You can JOIN only transperant tables. This is where JOIN scores over FOR ALL ENTRIES
    BR,
    Suhas

  • Alternative of base tables.

    Hi,
      Is there any alternative for base tables, By that performance will be improved still more? Not Internal times.
    Thanks
    Avi
    Points will be rewarded

    Hi
    Use of Views instead of base tables
    Many times ABAP programmers deal with base tables and nested selects. Instead it is always advisable to see whether there is any view provided by SAP on those base tables, so that the data can be filtered out directly, rather than specially coding for it.
    Not recommended
                Select * from zcntry where cntry like ‘IN%’.
                 Select single * from zflight where cntry = zcntry-cntry and airln = ‘LF’.
                Endselect.
    Recommended
                Select * from zcnfl where cntry like ‘IN%’ and airln = ‘LF’.
                Endselect.
    Thanks
    MAx

  • About pool table??

    what for pooled and cluster table used and how to create it???

    I. Transparent tables (BKPF, VBAK, VBAP, KNA1, COEP)
    ·     Allows secondary indexes (SE11->Display Table->Indexes)
    ·     Can be buffered (SE11->Display Table->technical settings) Heavily updated tables should not be buffered.
    II. Pool Tables (match codes, look up tables)
    ·     Should be accessed via primary key or
    ·     Should be buffered (SE11->Display Table->technical settings)
    ·     No secondary indexes
    ·     Select * is Ok because all columns retrieved anyway
    III. Cluster Tables (BSEG,BSEC)
    ·     Should be accessed via primary key - very fast retrieval otherwise very slow
    ·     No secondary indexes
    ·     Select * is Ok because all columns retrieved anyway. Performing an operation on multiple rows is more efficient than single row operations. Therefore you still want to select into an internal table. If many rows are being selected into the internal table, you might still like to retrieve specific columns to cut down on the memory required.
    ·     Statistical SQL functions (SUM, AVG, MIN, MAX, etc) not supported
    ·     Can not be buffered
    IV. Buffered Tables (includes both Transparent & Pool Tables)
    While buffering database tables in program memory (SELECT into internal table) is generally a good idea for performance, it is not always necessary. Some tables are already buffered in memory. These are mostly configuration tables. If a table is already buffered, then a select statement against it is very fast. To determine if a table is buffered, choose the 'technical settings' soft button from the data dictionary display of a table (SE12). Pool tables should all be buffered.
    "Major difference betwen Standard tables,Pooled tables and Cluster Tables?
    1.A transparent table is a table that stores data directly. You can read these tables directly on the database from outside SAP with for instance an SQL statement.
    2.Transparent table is a one to one relation table i.e. when you create one transparent table then exactly same table will create in data base and if is basically used to store transaction data.
    3.A clustered and a pooled table cannot be read from outside SAP because certain data are clustered and pooled in one field.
    4.One of the possible reasons is for instance that their content can be variable in length and build up. Database manipulations in Abap are limited as well.
    5.But pool and cluster table is a many to one relationship table. This means many pool table store in a database table which is know as table pool.
    6.All the pool table stored table in table pool does not need to have any foreign key relationship but in the case of cluster table it is must. And pool and cluster table is basically use to store application data.
    7.Table pool can contain 10 to 1000 small pool table which has 10 to 100 records. But cluster table can contain very big but few (1 to 10) cluster table.
    8.For pool and cluster table you can create secondary index and you can use select distinct, group for pool and cluster table. You can use native SQL statement for pool and cluster table.
    9.A structure is a table without data. It is only filled by program logic at the moment it is needed starting from tables.
    10.A View is a way of looking at the contents of tables. It only contains the combination of the tables at the basis and the way the data needs to be represented. You actually call directly upon the underlying tables.
    'The table which store information about Structures and Tables are as follows:
    DD02L - table properties
    DD02T - table texts
    DD03L - field properties
    DD03T - field texts
    Creating Pooled Tables/Cluster Tables Locate the document in its SAP Library structure
    Procedure
       1. In the initial screen of the ABAP Dictionary select object type Table, enter a table name and choose This graphic is explained in the accompanying text Create.
          The field maintenance screen for the table is displayed. Table type Transparent table is set as default.
       2. Make the necessary entries in the Short description and Delivery class fields on the Attributes tab page. Then define the fields of the table.
          Proceed as when Structure link creating a transparent table. Save your entries.
       3. Choose Extras
          ® Change table category.
          A dialog box appears in which you have to select the table type Pooled table or Cluster table.
       4. Choose This graphic is explained in the accompanying textSelect.
          You return to the field maintenance screen for the table. Field Pool/cluster name is displayed on the Attributes tab page in addition to the standard fields.
       5. Enter the name of the
          table pool or table cluster to which you want to assign the pooled table or cluster table in field Pool/cluster name
          Note that the total key length of a pooled table may not exceed the key length of the associated table pool. The key of a cluster table must correspond to the key of the associated table cluster.
       6. Proceed as when creating a transparent table (see
          Structure link Creating Tables). Remember that you cannot create indexes for pooled or cluster tables.
    Note
    All the attributes of the Structure link technical settings can be maintained for pooled tables and cluster tables. Before you can access these attributes, however, you must convert the table to a transparent table.
    Leaving content frame
    creating pool/cluster tables
    regards,
    srinivas
    *reward for useful answers*</b>

  • Possible for Native SQL to read Pooled Tables?

    Hi Experts,
    Is it possible to run native SQL against SAP's internal Pool Table, the table that stores the many "Pooled Tables" across SAP?  I realize that is much preferred to access the pooled table using Open SQL via ABAP functions, but that is not an option for me.  I am writing native SQL against a copy of the SAP ECC underlying tables.
    If it is possible, what is the technical name of the table?
    Thanks,
    Kevin

    Hello Kevin,
    quite a strange question. As you mentioned it before, the preffered way is to use open sql. The pooled tables are handled by the application server and so, they are not accessible by native sql.
    Independently, consider about two things:
    1.) The ABAP DDIC uses sometimes different sizes and field-lengths, so you should not read LSTR or LRAW fields with native sql.
    2.) You have to be more patient about transaction handling and parameter setting via SQL, because your application server does not get any information about what you have done before.
    Kind regards,
    Hendrik

  • For CRM 5.0 what is the ECC version supported

    Hi,
    Can any one help on this
    For CRM 5.0 what is the ECC version supported?

    ECC 5.0 onwards,
    lower versions can also be integrated using some plug-ins
    hope this helps
    additional info:
    SAP ECC 6.0 and subsequent releases will automatically contain all integration interfaces that so far have been contained in the SAP R/3 Plug-In and that ensured the technical integration with other SAP Components.
    Customers who run SAP R/3 4.6C, SAP R/3 Enterprise 47x100 and 47x200, and SAP ECC 5.0 will receive additional integration interfaces in a Support Package for PI 2004.1. The delivery of this Support Package will be synchronized with that of mySAP Business Suite. The 2005 delivery is in November as part of Support Package 10. Information about the delievery from 2006 onwards are take place here
    This rule applies only for customers with a SAP R/3 Plug-In release PI 2004.1. Customers with PI 2003.1 or older must first upgrade to PI 2004.1 or SAP ECC 6.0.
    No new interfaces will be provided for integration between new SAP component releases and SAP R/3 3.1I to 4.6B.
    Message was edited by: RH

  • Module pool ---Problem in finding the line index for the table control

    Hi Friends,
    I am working in Module pool programming.
    My requirement is when i select any record on the lead selection I need to find out the index of the line on which  row i have selected.
    Could any one please suggest me the proper solution how to get the line index for the table control in module pool programming.
    Thanks
    Satish Raju

    Hi Raju,
    Follow the steps
    <li>U should take one variable in your internal table or in structure which is used for table control fields.
          DATA :BEGIN OF itab OCCURS 0 ,
                mark TYPE c ,
                matnr LIKE mara-matnr ,
                matkl LIKE mara-matkl,
                maktx LIKE makt-maktx,
            END OF itab .
       controls: tabc types tableview using screen 100.
    <li>This mark variable should be given in Table control properties. follow the path
    double click on the table control-->attributes .->select w/SelColumn and in that give itab-mark.
    <li>Flow logic of the screen
       process before output.
         MODULE status_0100.
         LOOP AT itab with control tabc
         endloop.
       process after input.
         module cancel at exit-command.
         LOOP AT itab.
           MODULE read_table_control.
         ENDLOOP.
         MODULE user_command_0100.
    <li>read_table_control module code
         MODULE read_table_control INPUT.
         MODIFY itab INDEX tabc-current_line."this will update the itab table
                                             "mark field with 'X ' whatever we
                                             "have selected on table control
         ENDMODULE.
    <li>If you want to Delete some of the records from Table control follow this code u2026Create one pushbutton and give Fucnction code to that and write below code
       CASE okcode.
         WHEN 'DELETE'.
           LOOP AT itab WHERE mark = 'X'.
             DELETE itab.
           ENDLOOP.
       ENDCASE.
    I hope that it helps you.
    Thanks
    Venkat.O

  • Mapping table for contact person download from ECC and Groupware

    There are 3 connected system in our landscape:
    - CRM
    - Groupware (connected to CRM)
    - ECC
    We have a requirement that the Contact Person can be created in any of the above 3 system and should flow to the other. So, the below scenarios are valid in our case:
    1.  Contact created in Groupware, flows to CRM ->ECC
    2.  Contact created in ECC flows to CRM-> Groupware
    3.  Contact created in CRM flows to Groupware and ECC
    Our flow system works fine and the contacts created in one system, flows to the other 3 and any changes also flow.
    The problem is that for the contacts created in ECC, the communication data (phone, email etc) flow in CRM and get updated in the "Work Address" section in the Contact display screen in Web UI and the updates from Groupware for communication data gets updated in "Main Address" section.
    Can anyone please advise what are the mapping tables for the address update when the contact is created in :
    - Groupware/CRM
    - ECC
    Regards

    Hi Christophe,
    Thanks for the response.
    I checked for the notes you suggested, but having read it it doesnt appear to address my problem. Did you get this from SAP as fix to solve' specify the name of contact person' error in SMW01 ? Unfortunately even SAP isnt replying to me on this.
    I am also not getting any dump, all my queues are getting cleared in ECC and CRM. My error remains 'specify the name of contact person'. Interestingly when i tried to push the contact person directly as bupa_main..it too failed with the same error..more interestingly whenver my contact person tried to get replicated as bupa_rel..ecc does eat up a number assignment..but no record is created for it in ecc...the smw01 says partiaslly send ..receivers has error..
    Edited by: Hamed Kazi on Apr 19, 2011 2:33 AM

  • I have adobe creative suite 5.5 and have just bought a Sony Video Recorder with 4K. What preset should I use for importing video footage? Alternatively do I need a more recent version of the software?

    I have adobe creative suite 5.5 and have just bought a Sony Video Recorder with 4K. What preset should I use for importing video footage? Alternatively do I need a more recent version of the software? If so, what version do I need and can I download it from Adobe.

    I have adobe creative suite 5.5 and have just bought a Sony Video Recorder with 4K. What preset should I use for importing video footage? Alternatively do I need a more recent version of the software? If so, what version do I need and can I download it from Adobe.

  • Why Inner join or Outer join is not used for Pool or Cluster tables  ?

    Hi SAP-ABAP Experts .
    With Due Regards .
    May u explain me why Inner join or Outer join is not useful for Pool or Cluster tables  ?
    because peoples advised not use Joins for Pool and Cluster tables , What harm will take place , If we do this ?
    Best Regards to all : Rajneesh

    Both Pooled and Cluster Tables are stored as tables within the database. Only the structures of the two table types which represent a single logical view of the data are defined within the ABAP/4 Data Dictionary. The data is actually stored in bulk storage in a different structure. These tables are commonly loaded into memory (i.e., 'buffered') due to the fact they are typically used for storing internal control information and other types of data with little or no external (business) relevance.
    Pooled and cluster tables are usually used only by SAP and not used by customers, probably because of the proprietary format of these tables within the database and because of technical restrictions placed upon their use within ABAP/4 programs. On a pooled or cluster table:
    Secondary indexes cannot be created.
    You cannot use the ABAP/4 constructs select distinct or group by.
    You cannot use native SQL.
    You cannot specify field names after the order by clause. order by primary key is the only permitted variation.
    I hope it helps.
    Best Regards,
    Vibha
    Please mark all the helpful answers

  • Hi I have recentrly bought IPAD AIR , is there any flash version supporting this model or is there any alternative for flash siles to open ?

    Hi,
    I have recently bought IPAD AIR , is there any flash version supporting this model or is there any alternative for flash sites to open ?

    iPad do not support Flash
    However Skyfire, Photon, iSwifter, Browse2Go and Puffin Web Browser will provide limited Flash capability

Maybe you are looking for

  • Questions on reading a file...

    Hi All, I have a few questions on reading a file... 1st of all ... if I have BufferedReader inFile = new BufferedReader (new FileReader("tickets.txt"));and I do inFile.readLine(); will it read the next line everytime I do that? ... say I had a file t

  • Using Pages with iOS. How do I reduce image file size when I create a document with embedded images?

    Hi, I have created an annual family news letter in Pages on my iPad which incorporates pictures of events, holidays, occasions etc etc. I've then gone to covert it to pdf with the intention of sharing it via email but get a warning message about the

  • Seeking general tutorial for iMac, iPad, iPhone

    I have been using Apple for the past 2 years, but I do have some spare time available right now, so I'm wondering if there is some kind of general tutorial process which would help me get better organized, and not waste effort needlessly, if I can le

  • HP Desktop F4180 - Spooler App Error

    I operate Windows XP Service pack 3 and HP Desktop F4180 is connected via USB. When trying to print a big picture, when spooling I get Error message. Furthermore, I could not print anymore even if I restart. The printer disappears from 'Printers' in

  • VMWare Workstation 10 won't start [solved]

    So, I did a full system update and now VMWare won't start. I applied the netfilter patch on the wiki and that made it so the modules will compile(despite me using the stock kernel I encountered compiler errors). However, now I'm really stuck. When I