Adding views

Hi,
   while transfering data's  from legacy to SAP only basic data and plant data views were tranfered with relevent values .
   the remaining views has to be maintained in SAP. while going for additional views will the system  allow us to create additional views after creation of material with only two views.
  Is there any option to add views to the created material.pls provide.
Regards
suresh kanna

It is possible to add views after creation of materials also.
but you can't add view's in th change mode, in material master create mode  (MM01) select views what ever required for the same material number.

Similar Messages

  • Added views = added file size

    Hello,
    A general comment and a quick question:
    Comment:
    I am working on my 1st 3D PDF; I exported a .3ds file from 3DS Max @ 4.5 mb., imported into Adobe Acrobat 3D with a Mesh Quality and Texture Quality both reduced to 80%, saved my file as pdf file @ 1.4 mb (really awesome). I then added 12 views, hiding various parts, saved my file which increased the file size to 6.8 mb = 450 kb per view.
    I opened up PDF Optimizer>Clean Up>Compress entire file, saved my file, which dropped the file size down to 1.92 mb(super, very happy).
    Question:
    In the hopes of getting my file fize even smaller, is there a general rule of thumb when working with .3ds files in Acrobat 3D;like... the best file compression routine/settings/procedure to use when compressing .3ds files embedded in pdfs? Is there documentation based around general compression and best practices for compression for different file types when exporting from the native 3d programs, importing to Acrobat 3D and saving as .pdfs? I can't imagine making my file too much smaller, but one can always hope.
    Thanks,
    ~Chipley

    Hey Chipley,
    Given that the .3ds format does not give you access to Acrobat 3D's PRC conversion format, I think you're on the right track with reducing Mesh and Texture Quality. Those two areas tend to make up a lot you file size. I think the only way to really do this with a .3ds file type is to possibly reduce the Texture quality a little more. The use of the PDF Optimizer was a great idea. It would be hard to give you better idea than the approach you're already taking.

  • CONS-10033 adding view elemento to publication

    Hi,
    I'm getting CONS-10033 while adding a view to my publication. The publication element is created without complaint.
    This is the view as created in my Oracle schema:
    CREATE OR REPLACE FORCE VIEW "TOYSTORE"."VCATALOG" ("PRODUCTID", "CATEGORY", "NAME", "DESCN", "PICTURE", "ITEMID", "LISTPRICE", "UNITCOST", "STATUS", "ATTR1", "ATTR2", "ATTR3", "ATTR4", "ATTR5") AS
    select p.productid as productid,
    p.category as category,
    p.name as name,
    p.descn as descn,
    p.picture as picture,
    it.itemid as itemid,
    it.listprice as listprice,
    it.unitcost as unitcost,
    it.status as status,
    it.attr1 as attr1,
    it.attr2 as attr2,
    it.attr3 as attr3,
    it.attr4 as attr4,
    it.attr5 as attr5
    from toystore.product p, toystore.item it where
    p.productid = it.productid;
    The publication element is defined plainly on this view including all its attributes, with the TOYSTORE.ITEM as main table, and TOYSTORE.ITEM.ITEMID as the primary key attribute.
    The error message comes with a text saying that (my translation): The main table TOYSTORE.ITEM was not published for view TOYSTORE.VCATALOG.
    Any clues?
    Regards

    Not quite sure what you are trying to achieve, is it
    a) create a view in the client oracle lite schema or
    b) create a publication item for the client lite schema based on a server side view?
    If a, then you need to define the view create in the ddl statements section of the set up (eg in wtgpack), but this will ONLY be created on the initial sync. This will be a true view existing only on the client, and using client objects (and will appear as a view)
    If b, then as far as the client lite database is concerned, the object will be created as a table, even though it is a view on the server. When defining a view publication item, then you need to think about whether you want it to be fast or complete refresh. Complete is simpler as it does not worry about PK conflicts, but for updateable views you will tend to have data disappear from the client, and only come back after a compose and subsequent sync (complete refresh will execute the selection in real time during the sync download, before any incomong data has been posted).
    If set to fast refresh, then a driving base table needs to be defined, and the out queue logging is based on the PK of this table (NOT what you define as the pk for the client), so beware of constraint violations. All table names need the name of the base server schema as well. An example of view specifications (from the web.xml file) are
    <snapshot name="V_PDA_SITE_HAZARDS" owner="CDB_OWNER" order="1">
    <snaplatform object="VIEW" platform="ORACLE LITE PPC2003 XScale;US" template="SELECT * FROM CDB_OWNER.V_PDA_SITE_HAZARDS WHERE inssi_id IN (SELECT TO_CHAR(site_id) FROM CDB_OWNER.v_pda_fbs_site_driver WHERE bi_id=:bi_id)" updatable="N" conflict="server" refresh="complete" dml_procedure="" virtualprimname="" virtualprimcolname="">
    <index name="v_bi_sith_inssi" type="I" columns="inssi_id" />
    </snaplatform>
    </snapshot>
    or
    <snapshot name="V_PDA_FBS_SURVEY_DETAILS" owner="CDB_OWNER" order="2">
    <snaplatform object="VIEW" platform="ORACLE LITE PPC2003 XScale;US" template="SELECT * FROM CDB_OWNER.V_PDA_FBS_SURVEY_DETAILS WHERE bi_id=:bi_id and no_done != -1" updatable="Y" conflict="client" refresh="fast" dml_procedure="" parent_hint="CDB_OWNER.SURVEYS">
    <index name="v_surv_surp" type="I" columns="surp_id" />
    <index name="v_surv_type" type="I" columns="typc_code_surv,specific_all_sa" />
    <primarykeyhint name="CDB_OWNER.SURVEYS" columns="id" mappingcolumn="id" />
    </snaplatform>
    </snapshot>
    NOTE in the fast case, the parent table CDB_OWNER.SURVEYS appears in two places
    If other tables within the view are not defined as publication items, then you may find that changes are not logged to force a re-compose of the view publication item, so include them, either with a selection criteria of 1=2 or set to not created on client to prevent data download

  • Adding View Criteria Row attribute in a particular order

    Hello friends,
    We are using the Jdeveloper version 11.1.2.3.0.
    We are populating the Query component filter programmatically , we want to show the filter order in a particular way.
    The following is the code.
    ViewCriteriaManager vm = view.getViewCriteriaManager();
    oracle.jbo.ViewCriteria vca[] = vm.getAllViewCriterias();
    oracle.jbo.ViewCriteria vc = vca[0];
    vc.removeAllElements();
    ViewCriteriaRow vcr = vc.createViewCriteriaRow();
    vcr.setAttribute("A", "");
    vcr.setAttribute("B", "");
    vcr.setAttribute("C", "");
    vcr.setAttribute("D", "");
    vc.add(vcr);
    vc.saveState();
    view.applyViewCriteria(vc, true);
    vm.criteriaChanged(vc);
    But the filter is shown in the Query component in the following order.
    C,A,B,D
    Is there any way to add a filter in particular order?
    Thanks in advance.
    Best Regards,
    Vijay

    Sounds like your users are tough. You can provide your own ViewCriteriaAttributeHintsImpl and override the behaviour of HINT_NAME_FIELD_ORDER.
    Create a custom ViewRowAttrHintsImpl class
    public class CustomViewRowAttrHintsImpl extends ViewRowAttrHintsImpl {
    @Override
    public String getHint(LocaleContext locale, String sHintName) {
      if (HINT_NAME_FIELD_ORDER.equals(sHintName)) {
        //calculate and return field order here
      return super.getHint(locale, sHintName);
    }Generate a ViewRowImpl and return your custom class in createViewRowAttrHints
    @Override
    protected ViewRowAttrHintsImpl createViewRowAttrHints(AttributeDefImpl attrDef) {
    return new CustomViewRowAttrHintsImpl(attrDef, this);
    }

  • Custom "stacks" icons in date added view/sort

    i've found various workarounds for custom stacks icons that sort by name, date creation, date modified. the only one that i couldn't resolve was the "date added" which is what is most useful for the downloads folder.
    i had automator "record" my actions of opening the downloads folder, deleting a "downloads folder icon" that i had placed in there earlier, and then undoing the deletion. this made the "downloads folder icon" the most newly added. and then i saved it as a folder action attached to my downloads folder.
    sometimes it works and sometimes it doesn't and it hijacks the mouse control for the second or two that it's running.
    but would any genius that knows applescript better than i know of a way to do this as an applescript. it probably wouldn't be as "sloppy" as a recorded automator workflow and wouldn't hijack the mouse control.
    thanks in advance.

    added the script found in the comments of this blog post:
    custom leopard stacks (dated added)

  • Adding view link programatically

    Hi,
    I have created a view link programatically but dont know how to add it to AM.Can anyone tell me how to add this view link to AM Programatically.
    Thanks,
    Anupama

    Hi,
    I have created a view link programatically but dont know how to add it to AM.Can anyone tell me how to add this view link to AM Programatically.
    Thanks,
    Anupama

  • Adding View/tab TO service Order Item Level

    Hi All,
    I am using CRM 5.0 SP3. I need to add a new View/Tab on SERVICE ORDER at Item Level Details.
    This view consist of Some Custom Field (like IO Box, Drop down etc.)
    I have created the view but not able to understand how to add this view to the Item level details. I gone through the Cookbook, but not getting a clear idea of how to add this custom view there.
    I want to add this view like there are other view at Item level Details For Example "SLA Info","Notes" & "Partners", "Z view" (This Should be my custom view).
    Any hint will be very help full.
    Abhinav

    I assign the New z view into the viewset (ServViewSets.xml) and define the navigation link( in ServNavigationalLinks.xml as well. but when i am clicking on the link from the ServSLA, i am getting following errors.
    An exception occurred during the activation of target view ZServEvnt1 for the navigation
    An exception has occurred
    Exception Class CX_BSP_INV_PAGE
    Text: BSP Exception: Das Objekt ZServEvnt1.do in der URL/sap(bc/bsp/sap/crm_ic/ServItemViewSet.do ist nicht gültig.
    Program: CL_BSP_PAGE_BASE==============CP
    Include: CL_BSP_PAGE_BASE==============CM01A
    Source Text Row: 117
    An exception occurred in inbound plug IP_DEFAULT of target view ZServEvnt1
    An exception has occurred
    Exception Class CX_SY_REF_IS_INITIAL
    Text: Dereferencing of the NULL reference
    Program: CL_BSP_WD_WINDOW==============CP
    Include: CL_BSP_WD_WINDOW==============CM004
    Source Text Row: 47
    any help
    abhi
    Edited by: abhi on Sep 4, 2008 8:56 AM

  • Adding Viewer to Uploaded photos

    How I can I add a viewer to uploaded photos or do I have to upload them again?

    I am sorry my question was not clear. I have uploaded a group of photos to share with some friends. I want to add another friend to the list of authorized viewers. How can I do that without uploading the whole file again? Thanks for your help.

  • Adding View Accessors programmatically

    This is my code
    ViewDefImpl vdi=ViewDefImpl.findDefObject("model.view.MyView");
    ViewAccessorDef vdef = new ViewAccessorDef();
    vdef.setName("TestLOV");
    vdef.setViewDefFullName("model.lov.TestLOV");
    vdef.setRowLevelBinds(true);
    vdi.addViewAccessorDef(vdef);
    but itereting
    for(int i=0;i<vdi.getAttributeDefs().length;i++){
    System.out.println(vdi.getAttributeDefs().getName());
    there's no sign of TestLOV
    any ideas?

    Make sure the bind variable is not "required" in the ViewObject's settings ( it should not be if it is used only in the view criteria ). That will solve some of the problems.

  • Adding Views/Folders thru command line

    Hi --
    I am just wondering whether i can add views and create folders on those views from command line for a business area.
    Any ideas?
    Thanks
    Anil Chada

    Have you checked the Java Command line utility. It has lot of administration commands.
    regards
    http://www.infocaptor.com <--- Create your own intelligence

  • Adding customized additonal view to MM01

    Hi all,
    Is it possible to add an additional customized view to MM01, For example i want add an Basic Data 3 view to MM01. Is it possible?
    Regards
    Vijay

    goto SPRO and check for the project name which can be searched using F4 help...If any project component has screen exit FM u can use it...
    Adding Views in Material Master
    I am trying to add views using MM02.  It is showing me just 3 views ...BASIC DATA1, BASIC DATA2 &  CLASSIFICATION..... I want to add other views but am not able to do it.
    There are 2 ways to add views to the existing material master:
    1.  Go to mm01 
        - Enter the material for which you want to add the views. 
        - Then you enter the same material in copy from material 
        - Then you may find all the view 
        - Then select the views you want to add and make entries in the same view and save it 
        All this is done in mm01.
    or
        You can mass extend views for a material in tcode mm50. 
        Select the maintenance status as V for e.g. if you want to add views of sales.  *-- Chirag
    2. If the default setting is done in the material of the material type then you may not find the new views in mm01 
        If that is the case, then you go to spro  >> log general >> mat master >> basic sett >> material  types >> 
        define attributes of materisl types.
        - Select material type of the material in which you want to make the change
        - Double click on the same, then on right hand side, you will find user parameters under which you will find the views 
        - Select the view you want and save your settings
        - Then go to mm01 and do the way it is mentioned in the first step.
    Message was edited by:
            Ramesh Babu Chirumamilla

  • Error while adding custom fields in ERP quotation

    I am trying to add custom fields to ERP quotation. So picked up ERP_H and added view BTCUSTOMER_H/CustomerH to its views. I have added the relevant custom fields to BTCUSTOMER_H/CustomerH. Now when I try displaying this, I get the following error..
    Context generation failed in view BTCUSTOMER_H/CustomerH of UI Component ERP_H
    An exception has occurred Exception Class  CX_BSP_WD_INCORRECT_IMPLEMENT - There is no node text 'BTAdminH' in controller ''. 
    Method:  CL_BSP_WD_CONTROLLER=>DO_CONTEXT_NODE_BINDING 
    Source Text Row:  39
    Initialization of view BTCUSTOMER_H/CustomerH of UI Component ERP_H failed
    An exception has occurred Exception Class  CX_BSP_WD_INCORRECT_IMPLEMENT - There is no node text 'BTAdminH' in controller ''. 
    Method:  CL_BSP_WD_CONTROLLER=>DO_CONTEXT_NODE_BINDING 
    Source Text Row:  39
    Cannot display view ERP_H/HeaderOverviewpage of UI Component ERP_H
    An exception has occurred Exception Class  CX_BSP_WD_INCORRECT_IMPLEMENT - There is no node text 'BTAdminH' in controller ''. 
    Method:  CL_BSP_WD_CONTROLLER=>DO_CONTEXT_NODE_BINDING 
    Source Text Row:  39
    Window ERP_H/MainWindow of UI Component ERP_H cannot be displayed
    An exception has occurred Exception Class  CX_BSP_WD_RUNTIME_ERROR - View BTCUSTOMER_H/CustomerH in component ERP_H could not be bound 
    Method:  CL_BSP_WD_VIEW_CONTROLLER=>BIND_VIEW 
    Source Text Row:  165
    I have no prior experiance in UI development. Could someone explain me this error and how to fix this?
    Regards,
    Amar.

    closing this unresolved

  • In Fact Sheet, Open Leads View is displaying all Leads

    Hi Gurus,
    I have configured Account Fact Sheet(BP_Account_FS).
    I have added view "Open Leads", which should "display the last n leads that have status "open" or "in process".
    But In my case "Open Leads" is displaying all the Leads, which have status "Converted" & "Rejected" also.
    Anyone has come across with this. What are your suggestions?
    Thanks & Regards
    Rohan

    Hi,
    Raised an OSS, there was a programming error, so a new SAP Note has created SAP Note No. 1319703.
    Thanks & Regards
    Rohan

  • Error:When adding RDC runtime library (Crystal report XI R2) to Lotus notes

    Background : We have reporting feature implemented in one of lotus notes application using crystal reports 6 (OCX) and as Crystal report is going to be upgraded to CR XI version in my organisation, we need to implement the same using RDC component available in crystal XI . we have installed Crytal report XI R2 - SP 6 version for testing the integration.
    we are  referring a document available on SAP web site(attached below) that illustrates the steps required to integrate the Crystal Reports®  Report Designer Component into a Lotus® Dominou2122 application.  http://www.sdn.sap.com/irj/boc/go/portal/prtroot/docs/library/uuid/509b02de-a81e-2b10-f598-822b6d6f2024?quicklink=index&overridelayout=true
    Steps which have been outlined for adding runtime library in lotus domino application is shown below:-
    1. In Domino Designer, add a Form to the application.
    2. In the programmeru2019s pane, go to the (Declarations) handler of the Form and enter:
       Dim App As Variant,    Dim Rep As Variant
    3. Select Create | Object and select the u201CControlu201D radio button in the u201CCreate Objectu201D dialog box that comes up. From the list of controls, select u201CCrystal Report Viewer Control.u201D This adds the control to the Form.
    4. Click on the control and select Edit | Properties. In the u201CAppletu201D properties dialog, select the u201CSize object to fit windowu201D radio button and then close the properties dialog.
    We are getting an error message while trying to add 'Crystal Report Viewer Control' control (illustated in Step 3 above) in the lotus notes form . Error message which we get is 'An error has occured while processing a request on an object'.
    Alternatively , we created the object of Crystal Report Viewer on lotus notes form by adding viewer object file (Crviewer.dll) from the file system  after selecting the u201CObject from a fileu201D radio button in the u201CCreate Objectu201D dialog box and added following code in the postopen event of lotus notes form .
    Set m_Viewer = Source.GetObject("Crystal Report Viewer Control")
    Set App = CreateObject("CrystalRuntime.Application")
    Set Rep = App.OpenReport(u201Cc:lotus
    otes
    ep.rptu201D)
    Set m_Viewer.ReportSource = Rep
    Again, when lotus notes form is opened , it gives error 'Variant does not contain object' at 'Set m_Viewer.ReportSource = Rep' .
    Can any one suggest us any workaround or if iit is not possible in CR XI R2 into a Lotus® Dominou2122 application. Also, can any one provide us sample code if CR 2008 version can be integatred with lotus notes.

    I believe, Lotus was never a "supported" development platform, though it did work - at one time or another. Eventually it did not and you are at that point. I think it was CR 10 where it started to be impossible to add the viewer to Lotus. This was never fixed and we never did find out if this was a Lotus thing or a CR thing.
    Re. CR 2008 and Lotus. The RDC has been retired in CR 2008, so no luck there either for you. The only SDKs available in CR 2008 are for .NET and Java.
    Ludek

  • View Modes - Day-Week-Month

    Does anyone know of any way to add a quarterly view mode? (in otehr words being able to see 90 days at a time as an added view option - Day/Week/Month/Quarter)
    If not, are there any third party workarounds that can modify and provide a 90 day view mode in iCal?
    At the very least is there any EFFECTIVE way to communicate and get this easy enhancement added to the upcoming version of iCal.
    It is incredibly inconvenient to have to move calendar items to the following month with the restrictive view of only one month. IN other words, if I wanted to move an appointment from February 24 to say March 20 I am forced to manually open the item and type in new dates.
    A great system program known as DateBook Pro 4.0 had such a view option and I absolutely miss it EVERY day!

    I am experiencing the same symptoms - Day, Week, Month and the Today button are all grayed out. It particularly seems to happen if I've left iCal running overnight. The only way I've found to fix it is to re-start iCal. When this is happening, the only way to navigate to a different week (or month) is to use the menu "Go to date" function. I think the onset of this problem relates to an Apple software upgrade , but I can't be sure which one.

Maybe you are looking for