SAP ProComp model not showing up in ID

Hello,
I have created a model of type "SAP ProComp model " in ESB. Now when I try to use this as template while creating a Configuration Scenario in ID, I do not see it.
I am trying to locate it under "SAP Process Component Interaction Model".
But when I create a model of type "SAP ProComp Interaction model", I am able to see it.
This seems logical, but I am able to see SAP provided models of type "SAP ProComp model" here.
I am on PI 7.1 EHP1.
Please advise.
Thank you.

Is it because SAP Pro Comp model is not supported in EHP1. Now I tried creating my own SAP Pro Comp Interactive Model and when I try to load that, I get the below errors.
Process Component Interaction Model 'XXX': Error in reading Process Component object definition - set name and ID to null and type to internal
Please advise.
Thank you.

Similar Messages

  • My SAP MMC is not showing server instance01

    Hello Experts,
    My SAP MMC is not showing server instance01.
    I am running Netweaver 2004s SP17.
    It was working fine earlier, and after a system reboot, I tried to start the server again, but MMC does not show server instance in NSP node.
    I had tried starting the server from Administrative tools->Services   SAPNSP_01
    but, its not starting and showing and message as
           Could not start the SAPNSP_01 service on Local Computer.
           Error 5: Access is denied.
    where as SAPNSP_00 in  Administrative tools->Services started and showing that in MMC console also.
    Is there a way for me to fix this?
    Regards
    Sunil

    I managed to fix the problem - I ran sapstartsrv.exe from windows explorer (located in \usr\sap\NSP\DVEBMGS00\exe)
    Here I entered the following:
    Operation: -Install Service and register COM interface & Start Service
    SID: NSP
    NR: 00
    Start Profile: C:\usr\sap\NSP\SYS\profile\START_DVEBMGS00_<ServerName> (where <ServerName> is your computer name)
    User: <ServerName>\<UserName> (where <ServerName> is your computer name, and <UserName> is your windows login name)
    Password: windows login password
    Startup Type: Automatic

  • Sap m select not showing all values from gateway

    Hello Experts,
    This is the code for my select:
    var SelectCondType = new sap.m.Select("SelectCondType", {
       width : "200px"
       var oItemSelectTemplate1 = new sap.ui.core.Item({ 
                 key : "{ID}", 
                 text : "{Name}" 
      var sServiceUrl = "blablabla.com:8000/sap/opu/odata/sap/YXM_GWS_BART_SRV";
      var oModel = new sap.ui.model.odata.ODataModel(sServiceUrl, false,
      "user", "pass");
      SelectCondType.setModel(oModel);
      SelectCondType.bindAggregation("items","/cond_type",oItemSelectTemplate1);
    The select is showing around 50 (didn't really count em) items while there are like 500 in the gateway...
    Any Ideas ?
    Kind Regards,
    Bart

    Nevermind,
    awiedemann.com &amp;bull; SAPUI5 / oData / JSON model - set size limit
    Kind Regards,
    Bart

  • Specific Model not showing rows in a table in a column of a table

    Hello,
    Fairly simple issue here (I think):
    I have a table bound to a global model and its rows bound to "/items"
    I then have a column within that table which has a valuehelpfield that pops open a dialog with a table.
    This tables rows inside the dialog are bound to a temp model. Now I know this temp model has the correct data and format and I do not get a "no data" messages when I bind it's rows to the node on the temp model, and to double check that I tried binding it to an incorrect node and it did say "no data" and I tripple checked by getting the jsonstring of the model and it's exactly how it should be.
    Here is the code:
    oTable.addColumn(new sap.ui.table.Column({
                label: new sap.ui.commons.Label({
                    text: "Shop",
                    required: true
                width: "200px",
                template:  new sap.ui.commons.ValueHelpField({       
                value:"{shopdesc}",
                 valueHelpRequest: function(oEvent){   
                 var locModel = oTable.getModel();
                 var rowContextPath = oEvent.getSource().getBindingContext().getPath();
                 var oRowObj = oEvent.getSource().getBindingContext().getObject();
              var oDataOld = sap.ui.getCore().getModel().getData();
             var tempModel = new myJSONModel;
          tempModel.setData({
          shops: []
      sap.ui.getCore().setModel(tempModel, "tempModel");
             tempModel = sap.ui.getCore().getModel('tempModel');
                d = tempModel.getData();
                arr = d.shops;
              var shops = oDataOld.shops;
                 for (var i = 0; i < shops.length; i++) {
                     if (shops[i].area == oRowObj.area) {
                             arr.push(shops[i]);
                 var oValueHelpDialog = new sap.ui.commons.Dialog(
                            { modal: true,
                                title: "Select a Shop",
                                closed: function (oEvent) {
                                var oContext = oTableJobs.getContextByIndex(oTableJobs.getSelectedIndex());
                                if (oContext) {
                               var oSel = oContext.getModel().getProperty(oContext.getPath());
                             locModel.setProperty(rowContextPath + "/shop", oSel["shop"]);  
                             locModel.setProperty(rowContextPath + "/shopdesc", oSel["shopdesc"]); 
                 var oTableJobs = new sap.ui.table.Table({
                     visibleRowCount: 15,
                     firstVisibleRow: 1,
                     selectionMode: sap.ui.table.SelectionMode.Single,
                     width : "300px"
                 var oOkButton = new sap.ui.commons.Button({
                     text: "OK",
                     press: function (oEvent) {
                       oEvent.getSource().getParent().close();
                 oTableJobs.addColumn(new sap.ui.table.Column({
                     label: new sap.ui.commons.Label({text: "shop"}),
                     template: new sap.ui.commons.TextField().bindProperty("value", "shop"),
                     editable:false,
                     width: "100px"
                 oTableJobs.addColumn(new sap.ui.table.Column({
                     label: new sap.ui.commons.Label({text: "Shop Description"}),
                     template: new sap.ui.commons.TextField().bindProperty("value", "shopdesc"),
                     editable:false,
                     width: "300px"
                 var jsonString = tempModel.getJSON();
                 alert(jsonString);
                     oTableJobs.bindRows("tempModel>/shops");                                       
                     oValueHelpDialog.addButton(oOkButton);
                     oValueHelpDialog.addContent(oTableJobs);
                     oValueHelpDialog.open();               
            var oModel = sap.ui.getCore().getModel();
            oTable.setModel(oModel);
            oTable.bindRows("/items");
    Any help would be appreciated, I can't see what's wrong here, all seems fine to me! Thanks!

    HI Bob
    I briefly scan thru your code and spotted one common issue. When we are binding property, we need to include the model name. e.g.
    template: new sap.ui.commons.TextField().bindProperty("value", "shop"),
    should be
    template: new sap.ui.commons.TextField().bindProperty("value", "tempModel>shop"),
    -D

  • SAP management console not showing AS java

    Hello all,
    I have made a NW04s installation system test (linux+oracle). I then installed as java add-in EP and BI (AS JAVA, EP CORE, EP, BI JAVA). It was NW04s SR2 with SPC13 and kernel not changed: 700 patch 111.
    In the SAP management console there were 3 entries: one for database, one for abap instance and one for java instance.
    In the abap instance node I was able to see an entry for "AS java"  which was whowing two process (SDM and another one...).
    I made a new test installation similar to the previous one and in the SAP management console I do not see any entry for "AS Java". Of course AS java is installed and running !
    How can I get SAP management console show "AS java" ????
    Thank you
    Jean

    Hi Jean,
    Start Services.msc from run prompt (if this is windows based installation)
    and look for <SID>services, where <SID> is your instance name..
    Please do the following and let me know if this of any success
    You get back your MMC , please do the following steps.
    1. Go to Run and type MMC.
    2.Go to file and select add/remove snap in ( alt+m).
    3.Click on add
    4.Select the SAP system from there.
    Save the MMC console which you have created now....This should work fine.
    Thanks
    Pankaj

  • SAP Crystal Reports not showing up in Safari?

    I am trying to get to access my business Crystal Reports from home on my Mac in Safari, I am able to log in and see my choices, but the reports are coming up with the little blue lego logo with the question mark in the middle. I can access from work on PC but not on Mac. Any ideas?
    Thanks

    If it's actual crystal reports try the viewer, if it's a crystal reports driven website try changing changing User Agent to IE 6. If your Safari doesn't have Develop in menubar go to Preferences/Advanced and check Show Develop.
    I have to do this with a website that uses a crystal backed website.

  • JTable with custom column model and table model not showing table header

    Hello,
    I am creating a JTable with a custom table model and a custom column model. However the table header is not being displayed (yes, it is in a JScrollPane). I've shrunk the problem down into a single compileable example:
    Thanks for your help.
    import javax.swing.*;
    import javax.swing.table.*;
    public class Test1 extends JFrame
         public static void main(String args[])
              JTable table;
              TableColumnModel colModel=createTestColumnModel();
              TestTableModel tableModel=new TestTableModel();
              Test1 frame=new Test1();
              table=new JTable(tableModel, colModel);
              frame.getContentPane().add(new JScrollPane(table));
              frame.setSize(200,200);
              frame.setVisible(true);
         private static DefaultTableColumnModel createTestColumnModel()
              DefaultTableColumnModel columnModel=new DefaultTableColumnModel();
              columnModel.addColumn(new TableColumn(0));
              return columnModel;
         static class TestTableModel extends AbstractTableModel
              public int getColumnCount()
                   return 1;
              public Class<?> getColumnClass(int columnIndex)
                   return String.class;
              public String getColumnName(int column)
                   return "col";
              public int getRowCount()
                   return 1;
              public Object getValueAt(int row, int col)
                   return "test";
              public void setValueAt(Object aValue, int rowIndex, int columnIndex)
    }Edited by: 802416 on 14-Oct-2010 04:29
    added                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        

    Kleopatra wrote:
    jduprez wrote:
    See http://download.oracle.com/javase/6/docs/api/javax/swing/table/TableColumn.html#setHeaderValue(java.lang.Object)
    When the TableColumn is created, the default headerValue  is null
    So, the header ends up rendered as an empty label (probably of size 0 if the JTable computes its header size based on the renderer's preferred size).nitpicking (can't resist - the alternative is a cleanup round in some not so nice code I produced recently <g>):
    - it's not the JTable's business to compute its headers size (and it doesn't, the header's the culprit.) *> - the header should never come up with a zero (or near-to) height: even if there is no title shown, it's still needed as grab to resize/move the columns. So I would consider this sizing behaviour a bug.*
    - furthermore, the "really zero" height is a longstanding issue with MetalBorder.TableHeaderBorder (other LAFs size with the top/bottom of their default header cell border) which extends AbstractBorder incorrectly. That's easy to do because AbstractBorder itself is badly implemented
    http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6459419
    Thanks for the opportunity to have some fun :-)
    JeanetteNo problem, thanks for the insight :)

  • "SAP Systems" selection not showing in SAPinst welcome screen

    I recently purchased a NetWeaver Development subscription and am following the installation guide for SAP NetWeaver 2004s SR3 ABAP+Java on Windows with MS SQL Server. However, in the Welcome menu of SAPinst under the NetWeaver selection, I am not seeing the "SAP Systems" selection  as it is described in section 4.3 "Installing a SAP system using SAPinst". I only see the selections "Standalone Engines", "Optional Standalone Units", and "Software Life-Cycle Options". Could someone please tell me how I can install a "Central System" on a Windows 2003 Server? Thanks.

    Hi and thank you very much for quick reply...
    We have also concluded that the note suddently is "gone"?
    So the deal is to install a SR2 and then upgrade...Lucky i still have SR2 installs...
    I wonder what the solution would be if we didn't still had the install files for SR2. And what is the official
    reaction from SAP when installing SR2 win 32 bit for a customer, since the customer do not currently supports 64bit?
    I have tried to talk the customer intto 64 bit, but no luck so fare  
    On the other hand if they have a large environment running WM ware, then it can be a big job to upgrade!
    Thank you very much...

  • DAE models not showing in PS/CS4

    I'm importing DAE from Google 3D warehouse.  I can see the layer data, and the model data in the 3D panel.  The move handles appear.  But I see no model.
    I have seen in a couple of places where the Materials Opacity needs to be reset to 100%. But even after doing this the model is still not visible. 
    Please see attached GIF for reference.
    Thank you!

    Does the 3D hierarchy (leftmost button in the 3D panel) list any mesh items? Please check. the thing being a butterfly I also get the feeling that all it ever was is just some textured planes, so there won't be much geometry to begin with....
    Mylenium

  • Urgent SAP Help menu not showing option "Create Support Message"

    Hi all,
    We are running SAP 4.6c landscape (dev,qa,prd), and have solution manager installed .
    Now when i want to create a support messge from any system in my landscape i dont get the option "Create Support Message" in the SAP Help menu, and we create a support message using Help->Feedback option . Is this the correct was or is there any other settings or notes i need to make/apply on my landscape to get this option.
    Message was edited by: Kamran Ellahi

    Hi guys,
    Thanks for your answers... But is it possible to call transaction NOTIF_CREATE from an external system?
    I have done something already so that those 3 fields will be automatically populated for a message sent from an external system.
    I changed the screen and called FM BAPI_NOTIFICATION_CREATE(a remote enabled FM which is the one being used by transaction NOTIF_CREATE to create a message) inside FM BCOS_SEND_MSG.
    I populated the category, subject and solution in the FM export parameters as well as the solution number in the sap data table. I put a destination also..
    This FM calls another FM DNO_OW_CREATE_NOTIFICATION which is the one being used from the external system but do not cater the functionality to send the 3 fields that we need.
    As you will notice, there are lots of standard objects that I've changed. =)
    My problem now is that the system data sent is the same with the system data if you create the message using NOTIF_CREATE. Some system that were sent when a message is sent from an external system is missing but at least the sap system and client ID is sent. There is no external reference number also. But hopefullly, the users will accept it. Can't find any other solution to this.
    Thanks,
    Eric

  • SAP tab is not showing up

    Hi ,
    I installed Crystal Report s and i installed SAP Integration KIT even though SAP Manu Item is not displaying ,
    Please tell me what to do get the Menu Item .
    Thanks
    Santhosh

    Hi,
    before installing the SAP Integration Kit you need to make sure you have the SAP GUI with Bex Add Ons for BW 3.5 and BI 7 installed on the client.
    Ingo

  • Account Dimension not showing all members in the cube in Analysis Services

    Hi,        
             In SAP - BPC 5.1 after processing account dimension all the members are created under account dimension in analysis services but the same cannot be found in the data cube. Hence the reports generated through SAP - BPC is not showing all the members.
             The issue looks very strange as we can see the members getting created but the same is not getting populated in the cubes. I am not able to visualize what exacly the issue is? Is it with the application or with the analysis services?
    Thanks
    Sharath

    Your sixth sense is correct, there is definitely support in MSAS and BPC 5.1 for multiple hierarchies in the account dimension.
    I'm also referring to parentH1 and parentH2, but perhaps we're still speaking of different things.
    In the past, I faced a very similar problem as you, and the root cause was because I had one member, let's call it FancyParent, which, in H1, had children Child1 and Child2.
    But in H2 it had children Child1, Child2 and Child3. I forget now if that was how I wanted the setup to be, or if it was a mistake on my part, but either way, MSAS doesn't allow this. The admin consol didn't complain when processing the dimension -- this was in Outlooksoft 5.0; perhaps validation has improved now.
    But the cube was completely unworkable. Certain things were calculating correctly, but everything in the account dimension in the area around FancyParent (above and below it, in both hierarchies) was quite unpredictable.
    By disabling first one, and then the other, of the two hierarchies, and disabling blocks of accounts, I was eventually able to pinpoint the problem. But it took days to figure out what was the problem. (The account dimension had 2500 members and 4 hierarchies, and it was not a pretty sight.)
    A parent must have the same definition of children in all hierarchies. It can't, as another example, have children in H1, and be a base member in H2. Each member can have different parents in the two hierarchies, but must always have the same children in both.
    To work around this problem, I had to create two separate accounts NetIncomeH1 and NetIncomeH2 (and PretaxIncomeH1, PretaxIncomH2, etc. all the way down to the point where they branched off), to get the two separate aggregations of the P&L in the two hierarchies. Once I did that, it made sense to me why, but I also swore off on frivolous extra hierarchies ever again.

  • Upload of Appraisal Model Notes thru BDC

    Hi,
    Friends is it possible to upload notes maintained in hard copy Appraisal sheet to SAP Appraisal Model notes through BDC.
    Samriddhi

    Hi,
    Uploading content from hard copy to sap..it is possible if you have DMS..document mangement system.
    I doubt about appraisal system.
    Thanks & Regards
    Pallavi

  • SAP Standard ESS country structure not showing on the iViews

    Hi All,
    Some of the Fields in the SAP Standard Employee Self Service Country structure not showing on the iViews, if we want to bring those fields to iView level, What would be the solution.
    Please suggest.
    Thanks
    PRadeep

    Hi Pradeep
    If these are mandatory fields or legall required in that country and delivered in V_T588M or V_T588MFPROPS then you need to check with SAP why they are not shown in the ESS scenario
    If these are optional or R3 specific fields it could be they are not delivered in V_T588MFPROPS - try inserting
    an overide in V_T588MFPROPC
    If still you cannot get these fields you may need to add a field to the ESS application using NWDI
    and you may also need to change the model so it recognises the new field - this is effectively changing
    the SAP delivery
    Best regards
    Stuart

  • The billing doc is not showing in the order  documnet flow in SAP CRM 7.0

    Hi CRM Experts,
    Our CRM system has been upgraded from 4.0 to 7.0 recently.
    We have come across with one strange issue; for some orders  which are billed in ECC6.0 are not showing as next document in the CRM order under document flow in SAP GUI. Only preceding document and replicated document are showing in the CRM document flow.
    Appreciate for yor valuable solution at the earliest.
    Best Regards
    Succhi

    I have the same problem!!!   Did anyone solve this???

Maybe you are looking for