New Profiles for list Object Overview of COOIS

Dear guru ,
i run COOIS for list PPIOA000 (Object Overview)  Profile 000000000001 (Standard Profile)
for production orders.
In object selection view the system purpose for every object (operations , components ..) a profile  000001.
I have tried in customizing but I haven’t found where can I add new profile for this list.
Thanks in advance.

Dear Cristiano
Go to transaction COIS double click the Overall profile 000000000001     Standard profile
Order infromation system: Overall profile detail screen appears
Double click the Profile 000001agianst order headers
Order infromation system:Object profiles Overviewl screen appears
Add new entries to appear in the object selection screen.
Note : If you even drill down you can change the fields to display respectively.
Regards
Soundararajan M,

Similar Messages

  • Unable to find the default new form for list mylist1 - deploying the list instance via module feature

    hi,
    am facing a problem deploying a list instance via a feature, 
      I created the list in the UI with content and views.
    Exported the site template as WSP.
    Imported into Visual Studio the list instance, pages module and property bags.
    Copied into my new solution.
    Deploy list instance as a site-collection level scoped feature.
    activated the below features :
    mylist_ModulesFeature
    mylist_ListInstancesFeature
    mylist_PropertyBagFeature
    List deploys fine with content and views. However, I receive the following error when trying to add a new item: “Unable to find the default new form for list”. The same applies for editing items.
    can anyone pls help why i am getting this  error ?

    try these links:
    http://tomvangaever.be/blogv2/2010/04/unable-to-find-the-default-new-form-for-list/
    http://sharebrad.blogspot.in/2012/08/unable-to-find-default-edit-form-for.html
    http://stackoverflow.com/questions/10243131/deploying-a-list-instance-to-sharepoint-2010-error-unable-to-find-the-default-n
    https://happiestsharepointminds.wordpress.com/2014/03/01/unable-to-find-the-default-edit-form-for-list-or-unable-to-find-the-default-display-form-for-list/
    http://itsolutionsblog.net/sharepoint-problem-with-library-forms-unable-to-create-folder-ore-edit-properties/
    http://blogs.technet.com/b/yashgoel-msft/archive/2013/08/30/recreating-default-display-edit-and-new-forms-of-a-list-in-sharepoint-2010-using-powershell.aspx
    Please mark answer as correct if it is correct else vote for it if you find it useful

  • Name for list object:  ALVXXL01

    Dear Gurus
    I have query regarding expoert the data to spreadsheet , when i am doing the job system is asking below details , once i have provided that , file is not down loading, Please help me.
    first i am getting below message
    Filter criteria, sorting, totals and
    not taken into account
    Later system asking the below details
    Name for list object:  ALVXXL01
    Title for SAPoffice:
    Regards
    Srinivas

    Check:SAP EXCEL is not opening
                      End users not able to export a report to a spreadsheet
    SAP note 1080608
    Have a discussion with your BASIS team
    Regards
    Indranil

  • Remove duplicates for list object

    Hi,
    I have retrieved all the xml node values in List<object>. Now, I want to remove all the duplicates objects from that list.
    Example:
    If the object has n properties, I should remove only duplicate objects that have same values in all the n properties not just one property as ID or name. Please let me know how to achieve this. Preferably using LINQ. 
    Thank you.
    Regards,
    Kiran

    You can use a GroupBy.  I took the code from last posting
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Xml;
    using System.Xml.Linq;
    using System.IO;
    namespace ConsoleApplication1
    class Program
    static void Main(string[] args)
    string file1 = "<?xml version=\"1.0\" encoding=\"utf-8\" ?>" +
    "<Methods>" +
    "<Method>" +
    "<ID>1234</ID>" +
    "<Name>manager</Name>" +
    "<Path>path1</Path>" +
    "</Method>" +
    "<Method>" +
    "<ID>5678</ID>" +
    "<Name>manager</Name>" +
    "<Path>path2</Path>" +
    "</Method>" +
    "<Method>" +
    "<ID>5678</ID>" +
    "<Name>manager</Name>" +
    "<Path>path2</Path>" +
    "</Method>" +
    "</Methods>";
    string file2 = "<?xml version=\"1.0\" encoding=\"utf-8\" ?>" +
    "<Methods>" +
    "<Method>" +
    "<Path>path1</Path>" +
    "<Description>text</Description>" +
    "</Method>" +
    "<Method>" +
    "<Path>path2</Path>" +
    "<Description>text</Description>" +
    "</Method>" +
    "</Methods>";
    string file3 = "<?xml version=\"1.0\" encoding=\"utf-8\" ?>" +
    "<Methods>" +
    "</Methods>";
    StringReader reader = new StringReader(file1);
    XDocument doc1 = XDocument.Load(reader);
    reader = new StringReader(file2);
    XDocument doc2 = XDocument.Load(reader);
    reader = new StringReader(file3);
    XDocument newXDoc = XDocument.Load(reader);
    var results = from e1 in doc1.Descendants().Elements("Method")
    join e2 in doc2.Descendants().Elements("Method")
    on e1.Element("Path").Value equals e2.Element("Path").Value
    select new XElement("Method", new object[] { e1.Element("ID"), e1.Element("Name"), e2.Element("Description") });
    var results2 = results.AsEnumerable()
    .GroupBy(x => x.Element("ID").Value);
    var results3 = results2.AsEnumerable()
    .Select(x => x.Take(1));
    newXDoc.Descendants("Methods").Last().Add(results3);
    jdweng

  • Create new event for BOR object  for vendor creation

    Hello,
              I AM working on workflow.. Requrement is that , when a vendor is created I wanted the workflow to be triggered..
    But I dont find any bussiness object for this...
          Then I have created customized BOR object super type as LFA1. And created new event. Now I need to assign functionlity to this event, that is As soon as the vendor is created this event should be triggered so that I can use this as the start event for the workflow..
    Plz guide me ...
    Regards and Thanks,
    Poornima...

    Hi Poornima,
    Create a subtype and add the event in the BOR.
    Now call the FM  Userexit / BADI.
      CALL FUNCTION 'SAP_WAPI_CREATE_EVENT'
        EXPORTING
          OBJECT_TYPE             = 'ZKNA1'
          OBJECT_KEY              = OBJECT_KEY
          EVENT                   = 'ONSAVE'
    *   COMMIT_WORK             = 'X'
    *   EVENT_LANGUAGE          = SY-LANGU
    *   LANGUAGE                = SY-LANGU
    *   USER                    = SY-UNAME
    *   IFS_XML_CONTAINER       =
    * IMPORTING
    *   RETURN_CODE             =
    *   EVENT_ID                =
       TABLES
         INPUT_CONTAINER         = IT_CONTAINER
    *   MESSAGE_LINES           =
    *   MESSAGE_STRUCT          =
      IF SY-SUBRC <> 0.
        ENDIF.
    &******************Reward Point if helpful*************************&

  • New Profile for Nikon D700 24-120mm f4.0

    I noticed today in my Profile Downloader that the new 24-12
    0mm f4.0 Nikon Lens was available for download. Can someone tell me if that is an Ad
    obe generated profile, or is it from the user community? Thanks

    What you see in the downloader are all profiles contributed from the user community.
    -Simon

  • WCM, New Functions for WCM Objects - Logistics - SAP Library

    To add a comment, please log in or register on the top of this page and choose Reply. Please write your comment in English.
    You can also go back to the SAP help page.

    Hi,
    WCM topics can be covered in the [Enterprise Asset Management (EAM)|Enterprise Asset Management (SAP EAM); forum at the moment.
    If there were sufficient volume of WCM threads then a seperate forum could be requested.
    -Paul

  • COOIS - Saving Object Overview WIP Status layouts

    COOIS - Would like to be able to save the layout of an Object Overview - WIP Status report.  There is currently NO icons for "choose layout" , "export" or "views" available while in Object Overview.   I need to be able to create a report showing the header and operations list and this is the only way to get both on the screen at the same time.
    After I create the report layout with the fields needed, cannot save this format in any way.   The only thing I can do is print the report to a PDF file for others to view.  Would like to be able to save the format I have created and bring it up on screen anytime without have to create it from scratch each time.  This would prove a great resource if I only had the ability to save the layout. Especially when have a few 100 production orders.
    Thanks for all help in advance.
    Stan

    What happened to my other thread with 4 replies?
    Receiving help from Prasobh.
    Using COOIS:
    LIST    Object Overview
    Profile   WIP STATUS         may be company created.
    output is a 3 shades of blue and gray Production Order tree.
    shows  orders header, component, operation and confirmation lists at one time.
    Thanks

  • Creation of order information profile for COID Transaction

    Hi PP Friends,
    Could anybody tell me the procedure to creation a Order iformation profile to use in COID tranaction, I need to create a profile for the object Material.
    I have created but not showing in drop dowin of COID transaction. It look I missed some where.
    Pl give me the solution for my issue of any body knows.
    regards,
    Purna

    You can use transaction COISN
    (Following taken from IDES help )
    Define Profile for Order Information System
         In this step you can define overall profiles for the order information
         system.
         The overall profile controls
         o   what information is displayed in the order information system
         o   the layout of the information.
         An overall profile contains a number of individual profiles. Each
         individual profile contains parameters for the object overview list and
         the object detail list.
         In the overall profile you define the following:
         o   which objects are to be read from the database
         o   which objects are to be displayed in the list
         o   up to which object the objects are to be expanded in the overview.
         Activities
         Define which objects you want to display in the object overview.
    Using Production Order Information System Profiles
    The objects selected and the layout of the screen can be determined by an overall profile defined in the initial screen of the production order information system. The overall profile embodies various subordinated single profiles.
    An overall profile can be assigned the following specifications:
    u2022 A variant which can be used to suppress selection criteria
    u2022 Which objects to read from the database
    u2022 Which of these objects are to be displayed in the list
    u2022 The object up to which objects are to be expanded on the object overview
    u2022 Single profiles for all objects
    A single profile is made up of sets of parameters. The first set of parameters applies to both the object overview and the object detail list. The other sets of parameters are subprofiles that apply only to the object detail lists. A profile controls the following aspects of the information system display:
    u2022 Fields displayed in both object overview and object detail list
    u2022 Subprofile defining the fields to be displayed in the object detail list
    u2022 Specifications on how the list is formatted with respect to column width, field grouping,
       format of the values displayed
    u2022 Sort criteria
    u2022 Subprofile sort specification for the object detail list
    u2022 Grouping criteria
    u2022 Subprofile field grouping for the object detail list
    u2022 User filters
    u2022 Filter criteria to be used for selecting objectsu2014defined as a report variant for each set
    of criteria
    u2022 Status filtersu2014objects that are status controlled can be filtered according to a selection
    profile

  • Profile for Nikkor 24-120 F4

    Athough both LightRoom and CS5 both have profiles for the 24-120 Nikkor lens, it is not the New Nikkor 24-120 F4 lens. I would assume that it will be in the next release of Lightroom. Right now, I edit the raw .nef file in CS5 and then open "Lens Profile" and have CS5 do a web search, which does come up with the right profile for the 24-120 F4 lens. That is a long way around to to do a profile update and then have to save the file as ps file and return it to Lightroom. It would be much easier if the new profile for the lens was in the Profile List. Adobe... I do hope you are viewing and listening!
    Tunney

    Tunney,
    Have you tried the Adobe Lens Downloader application? http://labs.adobe.com/downloads/lensprofile_creator.html Using this application you can avoid going near Photoshop. Also, If you use it it will find a copy of the 24-120mm for raw images and allow it to be downloaded to the correct location on your hard disk.

  • How do I move bookmarks from an old profile to a new profile?

    I have created a new profile for Firefox and have a huge amount of bookmarks in my old profile. How can I move the bookmarks from my old profile to the new one? I have tried backing up my old bookmarks and then restoring them on the new profile's bookmark library, but this didn't work (the file wouldn't show up and when I put it in a folder to force it to show up it wouldn't do anything). So how can I do this?

    http://support.mozilla.com/en-US/kb/Recovering+important+data+from+an+old+profile

  • Qualifications Profile for Contact Person-PT

    I have assigned qualification to Contact Person -- Object Type "PT-Contact Person" but in transaction PPPD, I am unable to display Qualifications Profile for the Object "PT-Contact Person", while I am able to display Qualifications profile for other objects such as "Person"
    Message reads as follows:
    Unable to display a profile for object "PT" -- Message no. PQ213
    I am wondering if I am supposed to change any settings in order to be able to display Qualifications for Object TYpe "PT-Contact Person" or do I have to use a different transaction for this object type

    Hi sap hr consultant
    As per my knowledge qualification profile is displayed only for the object type "P" not for contact person or user even the same problem we faced but according sap help also for contact person you cannot display the profile.  please delete that contact person hire him for the same positon and again you can assign him as a contact person and do the qualification profile.  As per my knowledge these contact person and user is addition or you can see it is supporting to person so try with the person only.
    bye
    naveen

  • Profile for field selection on object detail list

    Hi All ,
            What is the customizing path or tcode to define  Field selection profile and also object profile
    to choose in COIO transaction , please advice the assignment process also .
    Thanks
    Anil

    Hi All , thanks for your quick response
    I can create only overall profiles in COISN tcode .Please advice me where can we create Object profile and field profile and assignment of the same to overall profile .
    My purpose of defining above profiles is I wish to incorporate a field name resource in the seperate column with including the list of fields which is showing currently in COIO order header (here we can not find resource untill drill down) .For acheiving the same I think I can define new field profile and assigning that one to object profile , and thus I can able to select the desired object profile after executing the COIO order header --> settings --> select profile . Please suggest me if I am wrong and also the other transaction codes
    Thanks
    Anil

  • BAPI to get all user lists for input object,authorizations, and profiles

    Hi Experts,
    BAPI to get all user lists for input specific object, authorizations, profiles and values?
    Any useful answer will be rewarded with suitable points.
    Thanks,
    Rohan

    Hi
    use the fun module/Bapi's
    BAPI_USER_GET_DETAIL
    BAPI_USER_LOCPROFILES_ASSIGN
    BAPI_USER_LOCPROFILES_DELETE
    BAPI_USER_LOCPROFILES_READ
    BAPI_USER_PROFILES_ASSIGN
    BAPI_USER_PROFILES_DELETE
    SUSR_BAPI_USER_PROFILES_ASSIGN
    SUSR_BAPI_USER_PROFILES_DELETE
    also you can use the tables UST12 for user based authorizations
    AGR_USERS   -roles assignment for users
    AGR_PROF  - Profile data for roles
    AGR_DEFINE - Auth Profiles for users
    See the AGR_* and US* tables further
    Reward points if useful
    Regards
    Anji
    Message was edited by:
            Anji Reddy Vangala

  • Creating a New Forecasting profile for MRP

    Hi there,
    Please can somebody let me know how do I create a new Forecasting profile for MRP. 
    I want to see this in table MRPR once created.  (field PROPR).
    Kind Regards,

    Dear marelizen
    Use transactio code MP80.
    Creating a Profile  
    The information contained in this info object is relevant to the material master for industry and to the article master for retail. Retail customers are requested to substitute:
      article for material
      requirements planning for material requirements planning or MRP
    1. In the Material Master menu, choose Profile ® MRP profile or Forecast profile ® Create.
    The initial screen appears.
    2. Enter the name you want to give the profile.
    If you want to use an existing profile as a reference, enter its name under Copy from so that the system can copy its values to the new profile.
    3. Choose Selection screen.
    The selection screen appears. It shows all the fields that can be copied to the MRP or Forecasting screen in the material master record.
    4. Enter a profile description and select the fields you want the profile to contain, specifying whether each field is to be copied to the material master record as a fixed value or as a default value.
    It is not possible to select Fixed lot size and Maximum stock level in a single MRP profile. However, if you select Maximum stock level, you must also select Lot size (materials planning).5. Choose Data screen.
    MRP profile data is spread over two screens. To switch from one screen to the other, choose Data screen 1 or Data screen 2.
    When you access the data screen from the selection screen, the system checks whether the fields selected are allowed to appear in the same profile.
    The data screen appears, containing only the fields you selected on the selection screen. The fixed values and default values are displayed in different colors. All fixed values are required fields except where the field can also be left blank.
    If, in the forecast profile, you enter N or 0 as the forecast model, no forecast is made.
    Like forecast model N, if you enter forecast model 0 when maintaining a forecast profile, you will be unable to maintain any other field in the profile.
    Unlike forecast model N, forecast model 0 deletes any existing forecast values when you change the material. This ensures that these values are no longer included in materials planning.
    6. Enter the corresponding values and save the profile.
    If the system detects inconsistencies or errors, it asks you to change the fields selected on the selection screen and/or to correct the values. Otherwise, the initial screen appears, where you can begin to create another profile.
    warm regards
    Ramakrishna

Maybe you are looking for

  • How do I clear unread messages in mail?

    They're all read, but still shows unread messages on my home page. It's very frustrating!!

  • IPOD freezes when I run

    Everytime I run my IPOD freezes up. I can reset it but only while standing still. It runs fine after being reset until I start running again. I have tried with and without hold on but it doesn't seem to matter. I have already had to have my IPOD refo

  • Error in Event Alert

    My requirement is to create an alert which will send a mail when any change is made in the employee information(PER_ALL_PEOPLE_F). I tried with my local instance it is working fine. But when i try to do the same in the client instance. The alert is n

  • Workshop 8.1 - jsp:include an Page Flow action resource

    Hi everybody. Can i use jsp:include to "include" a page flow action ? I've tried it, but odd things are happening: The resource got included, but fragments of html source "around" it are been lost. Any ideas ? Thanks in advance.

  • Many songs in my library will no longer play.

    Many songs in my library will no longer play. I receive a message saying "song could not be used because the original file could not be found". It then offers me a selection of earlier libraries going back several years. None of these earlier librari