How do we link a new table to CRMC_OBJECTS?

RE: CRM4
I tried to use the BBP_PDIGP table in the CRMC_MAP transaction for UI Structure CRMT_ISALES_BASKETITEM_BBP, but it says that table is not part of CRMC_OBJECTS
How do we make BBP_PDIGP table part of CRMC_OBJECTS?
If we can link the BBP_PDIGP table to CRMC_OBJECTS, then I can map MATGROUP from the UI Structure above with CRMC_MAP to SCHEMA_TYPE. 
Next, we need to map the SCHEMA_TYPE in CRM to the field in ERP that we have the data already.
Sounds simple enough...but, I don't know how to do the linkages.
Otherwise, how might we link the field SCHEMA_TYPE found in table BBP_PDIGP to one of the objects already found in the UI Structure CRMT_ISALES_BASKETITEM_BBP - Here's the available list:
AC_ASSIGN     Settlement Account Assignment (CRM)
ACCOUNTING     Account assignment
ACTION     Actions
ACTIVITY_H     Header data activity
ACTIVITY_I     Activity Item Data
APO_I     APO item data
APPOINTMENT     Dates
ATTACHMENTS     Attachment set, not BDS!
BATCH     Batch Properties
BILLING     Billing data
BILLPLAN     Billing plan
CANCEL     Cancellation
CONDITION_COM     Communication structure condition det.
CONDITION_H     
CONDITION_I     
CONDLINE     
CONFIG     Configuration data item
CONFIG_FILTER     Configuration filter item
CONFIRM     Availability confirmation
COPY     General copy control
COUNTER_H     APO Item Data
COUNTER_I     APO item data
CREDITVALUES     Open Transaction Credit Values
CRMD_CASE     CRM Case Management
CUMULAT_H     Header totals
CUMULATED_I     Item cumulation values
CUSTOMER_H     Customer header data
CUSTOMER_I     Customer item data
CUSTTAB_H     Table-Like Header Data for Customer
CUSTTAB_I     Table-Like Item Data for Customer
DOC_FLOW     Document flow
DYN_ATTR     Dynamic attributes
EVENT     Event handler
FINPROD_I     Financing product data item
FREIGHTCOST     Shipment costs
IPM_RCHAR     Rights Characteristics
IPM_RCTRL_I     Rights Control Data
LEAD_H     Lead Header Data
LIMIT     Limit
LINK     Link Handler
MESSAGES     Message Handler
OPPORT_H     Opportunity header data
ORDER     General order processing
ORDERADM_H     Administration header
ORDERADM_I     Administration item
ORDPRP_I     Connection PPR to transaction item
ORGMAN     Organizational data
PARTNER     Partner Set
PAYPLAN     Payment Schedule
PRICING     Pricing Data
PRICING_I     Pricing data und results
PRIDOC     Pricing document
PRIDOC_COM     Communication with price determination
PRODUCT_I     Item product data
QUALIF     Qualification Requirement Set
REFOBJ     Service Reference Object
SALES     Sales data
SCHEDLIN     Schedule lines
SCHEDLIN_I     Scheduling lines item view
SERVICE_H     Service header
SERVICE_I     Service item
SERVICE_OS     Service reference object subject
SERVICEPLAN_I     Service Plan Item
SHIPPING     Shipping data
STATUS     Status
STATUS_H     Header Total Status
STRUCT_I     Item structure data
SUBJECT     Service Subject
SURVEY     Questionnaire
TAX     Taxes
TEXTS     Texts
TOLERANCE     Tolerances

Hi Mike,
Will it be possible for you to let me knw how the entries come in table CRMD_LINK...??
I am not getting the entry  of orgman in this table for item guid.
Pls help.
Thanks,
SA

Similar Messages

  • How can I create a new table in a MySQL database in MVC 5

    I have an MVC 5 app, which uses MySQL hosted in Azure as a data source. The point is that inside the database, I want to create a new table called "request". I have already activated migrations for my database in code. I also have the following
    code in my app.
    Request.cs: (inside Models folder)
    public class Request
    public int RequestID { get; set; }
    [Required]
    [Display(Name = "Request type")]
    public string RequestType { get; set; }
    Test.cshtml:
    @model Workfly.Models.Request
    ViewBag.Title = "Test";
    <h2>@ViewBag.Title.</h2>
    <h3>@ViewBag.Message</h3>
    @using (Html.BeginForm("SaveAndShare", "Home", FormMethod.Post, new { enctype = "multipart/form-data" }))
    @Html.AntiForgeryToken()
    <h4>Create a new request.</h4>
    <hr />
    @Html.ValidationSummary("", new { @class = "text-danger" })
    <div class="form-group">
    @Html.LabelFor(m => m.RequestType, new { @class = "col-md-2 control-label" })
    <div class="col-md-10">
    @Html.TextBoxFor(m => m.RequestType, new { @class = "form-control", @id = "keywords-manual" })
    </div>
    </div>
    <div class="form-group">
    <div class="col-md-offset-2 col-md-10">
    <input type="submit" class="btn btn-default" value="Submit!" />
    </div>
    </div>
    @section Scripts {
    @Scripts.Render("~/bundles/jqueryval")
    HomeController.cs:
    [HttpPost]
    public ActionResult SaveAndShare(Request request)
    if (ModelState.IsValid)
    var req = new Request { RequestType = request.RequestType };
    return RedirectToAction("Share");
    The point is that, I want the user to fill the form inside the Test view and click submit, and when the submit is clicked, I want a new entry in the new table to be created. But first of course I need to create the table. Should I create it using SQL query
    through MySQL workbench? If yes, then how can I connect the new table with my code? I guess I need some DB context but don't know how to do it. If someone can post some code example, I would be glad.
    UPDATE:
    I created a new class inside the Models folder and named it RequestContext.cs, and its contents can be found below:
    public class RequestContext : DbContext
    public DbSet<Request> Requests { get; set; }
    Then, I did "Add-Migration Request", and "Update-Database" commands, but still nothing. Please also note that I have a MySqlInitializer class, which looks something like this:
    public class MySqlInitializer : IDatabaseInitializer<ApplicationDbContext>
    public void InitializeDatabase(ApplicationDbContext context)
    if (!context.Database.Exists())
    // if database did not exist before - create it
    context.Database.Create();
    else
    // query to check if MigrationHistory table is present in the database
    var migrationHistoryTableExists = ((IObjectContextAdapter)context).ObjectContext.ExecuteStoreQuery<int>(
    string.Format(
    "SELECT COUNT(*) FROM information_schema.tables WHERE table_schema = '{0}' AND table_name = '__MigrationHistory'",
    // if MigrationHistory table is not there (which is the case first time we run) - create it
    if (migrationHistoryTableExists.FirstOrDefault() == 0)
    context.Database.Delete();
    context.Database.Create();

    Hello Toni,
    Thanks for posting here.
    Please refer the below mentioned links:
    http://azure.microsoft.com/en-us/documentation/articles/web-sites-dotnet-deploy-aspnet-mvc-app-membership-oauth-sql-database/
    http://social.msdn.microsoft.com/Forums/en-US/3a3584c4-f45f-4b00-b676-8d2e0f476026/tutorial-problem-deploy-a-secure-aspnet-mvc-5-app-with-membership-oauth-and-sql-database-to-a?forum=windowsazurewebsitespreview
    I hope that helps.
    Best Regards,
    Sadiqh Ahmed

  • 2LIS_05_Q0TASK, or how to extract from a new table

    Hi All,
    I would like to enhance the Quality Management (in Lo Cockpit) extractors with own data. I have standard table appends and an own table which represent a sublevel of the task table QMSM. The appends are ok, I can enhance the standard extractors. But how can I use my new table in the BI?
    The key of the new table is this:
    MANDT
    QMNUM
    MANUM
    OUTCM  (char10)
    CODE    (char10)
    Please help.

    Hello Laszlo,
    If I would have understood your question,
    Once you are done with the datasource enhancement you have to replicate the same into BW side and you have to map the new fields to Comm Stru and finally your data target (InfoCube / ODS)
    Thanks
    Chandran

  • How can I insert a new table whose cells are linked to Cell Styles?

    How can I define a Table Style so that cells in new tables are automatically linked to my Cell Styles? (Not sure if "linked" is exactly the appropriate word....I'm going for "connected in such a way that when the Style is changed, the character/paragraph/cell/table/object updates to reflect the change.")
    I thought the whole point of using Cell Styles in Table Styles would be so the cells can be automatically linked to the desired Cell Styles when the table is created -- but that isn't happening for me. I don't know if I'm just confused or if this is a bug:
    When I insert a new table of a Table Style I have defined, it seems all cells in the new table are simply linked to Cell Style [None], with overrides for each cell that are consistent with the applicable Cell Style as it was defined when the table was inserted. So although the appearance of each cell is consistent with the Cell Style I defined for for that region of the table, the cells don't update if I later make changes to the Cell Styles I defined.
    (If, after inserting a new table, I manually select each cell and apply the desired Cell Style, then the cells do (of course) update when I change the Cell Styles.)
    Is it possible to have cells be actually linked to Cell Styles when a new table is inserted, instead of cells being simply linked to style [None] with overrides?
    (I'm using the up-do-date 2014 release of InDesign CC, in case that's relevant.)

    there is a example on Page 1149 of book Graphic Java 2 mastering the JFC
    by David M. Geary. ISBN: 0-L3-079667-0, Try to take a look the code. It will help.

  • How can I create a new table from a filed cell?

    Every time that I fill a row of cells I want to creat a new table with the content of that cells.
    How can I do it?
    Donw here it´s the example.
    From the top table, I want to fill these rows, and everytime that it´s done, I want that a new table apears like the cells under.
    There is any Way to do it?
    In the Spanish version of Number I found in the references formulas, one formula called "DIRECTION" that describes to do this.
    But I found no way to do it.
    The above formula it´s this:
    =DIRECCION(row; collumn; type of direction; stile of direction; table name)
    Anyone can help me?
    I really need this solution.

    Otto,
    Based on the syntax you quoted for that function, the english equivalent is "Address". It doesn't create a Table, but rather it creates an Address that references a Cell, in the form of a String. The common, and only, use that I am aware of for Address is to use it as the parameter for INDIRECT. For example: INDIRECT(ADDRESS)) will produce a reference to a table cell, but it will not produce a table.
    Jerry

  • How do I create a new table in Numbers '08 without them overlapping?

    I am using Numbers '08 and Mac OS X 10.8.2
    This is very basic but I want to create a bunch of consecutive tables in the same sheet. I want each table to be seperate and I want the title of the table to show above it. I have figured out how to do this for the first table, but each time I try to add a new table, it just overlaps the bottom of the first one.
    I want each table to have the same style as well so I don't have to keep adjusting the column width etc.
    I feel very silly for asking this but please help!!!

    Never mind, I figured it out!!!
    I selected the table, clicked on the small grey corner at the top left of the table and dragged the table to where I wanted it. So simple!!!

  • I can't copy my IStore tv shows to my Ipod nano from my new pc - How do I link my new pc and my Ipod?, I can't copy my IStore tv shows to my Ipod nano from my new pc - How do I link my new pc and my Ipod?

    I get a message saying my show "can't be copied because it can't be played on this IPod."  I've authorized my new pc, how do I get my new PC to recognize my Ipod, which was originally set up on my old PC?

    Do you know how much space the cheapest macbook pro with reatina has?
    http://www.apple.com/mac/compare/notebooks.html
    A basic MBP may only have
    128GB solid-state drive

  • For a SharePoint list LVWP - how to open links in new window? (Without SPD - Without access to server)

    Hi there,
    I canNOT use SharePoint Designer nor do I have access to server to change any 14 hive files.
    I have a SharePoint 2010 List with a field of type Hyperlink. I need these links to open in New Window. Only links with-in this LVWP should open in new window (and not links on Quicklaunch or top nav).
    Any clues how to achieve this please? JS is okay.
    Thanks.

    Hello,
    The good news is that you're not the first to have those requirements!
    Here's the JavaScript:
    <script>
    var allLinks = document.querySelectorAll("table.ms-listviewtable tr td a");
    for(var i=0; i<allLinks.length; i++){
    if(allLinks[i].onclick == null){
    var targetUrl = allLinks[i].href;
    targetUrl = targetUrl.indexOf("?") > -1 ? targetUrl + "&isDlg=1" : targetUrl + "?isDlg=1";
    allLinks[i].href= "javascript:var options = {width:500, height:300, url:'"+targetUrl+"'}; SP.UI.ModalDialog.commonModalDialogOpen('"+targetUrl+"', options);";
    </script>
    This script can be saved to a text file and uploaded to a document library. You can then add a content editor web part below your list view web part (so that it doesn't execute until after the list view has loaded) and set the "content link"
    property of the web part to be the path to the uploaded text file.
    The solution was originally posted here:
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/8ca275df-1d9c-4d0f-a624-c0531fda069a/how-to-open-model-dialog-onclick-of-list-item-hyperlink-column?forum=sharepointdevelopmentprevious

  • How do I link to a table from a slice of a pie chart?

    My project manager is after me to add a feature to a pie chart built on one of my tables. The code that selects from the table for the pie chart is this:
    select 'http://apexdevapp1.ci.raleigh.nc.us:7777',activity_type,count(ID) total FROM eba_ver2_cust_activity
    where ACTIVITY_DATE BETWEEN NVL(TRIM(:P23_START_DATE), '01-JAN-2001') AND NVL(TRIM(:P23_END_DATE),
    '31-DEC-2099')
    group by activity_type,'http://apexdevapp1.ci.raleigh.nc.us:7777';
    She wants to be able to click on a slice of the pie ("activity_type") and link to another page showing a report limited to that activity_type, selected from the same table. I know how to link from one interactive report to another, but I don't know how to do it from a slice of a pie chart. Does anybody know how?
    I'd appreciate some guidance on this.
    Steve the n00b in Raleigh NC

    Denes Kubicek wrote:
    Have you compared that link with any of your apex application links in the browser? ;) :)
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.opal-consulting.de/training
    http://apex.oracle.com/pls/otn/f?p=31517:1
    http://www.amazon.de/Oracle-APEX-XE-Praxis/dp/3826655494
    -------------------------------------------------------------------I may be missing the point of your question, Denes, but all my links are implemented from the Link Column section under Report Attributes. They are not mentioned anywhere in the Select statement, unlike yours.
    Steve "the n00b" in Raleigh NC

  • List - Navigation Outline - how to open link in new window/tab?

    I have created Navigation Outline but would like to open links in the new window or tab.
    We are using single sign-on within our intranet therefore the links looks like that: f?p=105:1:&SESSION..
    Does anybody have any ideas how to open new window, I have tried this: target="_blank" but it doesn't work.
    Thanks in advance.
    Robert

    Where exactly are you building this link to open a new window? Are you builidng it inside the query? a column link? I'm just curious; as it would make a slight difference in syntax, or where to escape, or whether or not you need to escape or not. But anyways, you could look into the javascript:popupURL syntax.
    So if you were building a link inside a query, the syntax would look similar to:
    '<a href = "javascript:popupURL(''f?p=&flow_id.:101:&session.::&debug.::&P101_ITEM:&P99_MATCH_ITEM.'')">Link</a>'
    Those are two single quotes that start and end the ....f?p-url-part....I.e., escaped.
    But thats just an example. Hope that helps.

  • How to open link in new tab using Spry?

    Does anyone know how to open menu web links in a new tab
    (instead of opening a new window - IE7) using the Spry horizontal
    dropdown menu? I tried putting "_tab" in the target field but it
    doesn't seem to work. Thanks!

    drstall wrote:
    > Does anyone know how to open menu web links in a new tab
    (instead of opening a
    > new window - IE7) using the Spry horizontal dropdown
    menu? I tried putting
    > "_tab" in the target field but it doesn't seem to work.
    Thanks!
    Opening new windows in a new tab is a setting within the IE7
    preferences ( and I'd assume 8 too ) and as far as I'm aware there
    is no control over this setting from within the HTML/JavaScript of
    the web page to do what you are asking. If you use _blank and the
    user has the appropriate setting in their browser, then it will
    open in a new tab, not in a new window.
    Danilo Celic
    |
    http://blog.extensioneering.com/
    | WebAssist Extensioneer
    | Adobe Community Expert

  • How can I link a new Sold-to Customer to an existing Credit Account?

    Hi,
    I have an existing Credit Account: 90008740 with a Sold-to Customer 90008740.
    I have created a new Sold-to Customer 90008745 and I want to link it to Credit Account 90008740.
    When I go into transaction FD32 and I complete the data for my new customer, I see that it immediately selects 90008745 as the credit account.
    However, I want to use Credit Account 90008740.
    How can I do that?
    Can anyone help me?
    Thank you.
    Kind regards,
    Linda Verding

    There is no partner function available in the credit management. In the customer master in company code data you could link them using a previous account number. 
    PLS ASSIGN POINT TO SAY THANKS.

  • How to open link in new window using Mountain Lion

    When I upgraded to Mountain Lion, opening a link closes the window I'm in when it opens the new one.  Example, I'm in email, click on a link, and then have to reopen email.  The back button doesn't work.  Where is the setting to change this so my current window remains open?  I use Safari.

    The option to open in a new tab or new window is in Safari > Preferences > Tabs > Open pages in tabs instead of windows: Never, Automatically, or always.

  • How do i create a new table from a *.sql file in JSP

    <html>
    <%@ page language="java" import="java.sql.*" %>
    <%@ page errorPage="ExceptionHandler.jsp" %>
    <%
    Class.forName("com.mysql.jdbc.Driver").newInstance();
    String dbUrl = "jdbc:mysql://localhost/test?user=root";
    Connection conn = DriverManager.getConnection(dbUrl);
    Statement stmt = conn.createStatement();
    stmt.executeUpdate("\\. addresses.sql");
    %>
    how would i create a table from the addresses.sql file?

    stmt.executeUpdate("\\. addresses.sql");This, of course, will not work.
    You might even execute it the same way you do from command line with some Runtime.exec() jugglery but I would suggest you to work with my first suggestion unless someone else came up with something better.

  • How to open link in new tab with right click?

    I'd love to be able to right click, i.e., two finger tap on the magic trackpad, and have a link open in a new tab.  I know I can hold the command button to accomplish this, but then it takes two hands.  I tried the following on the command line which had no effect:
    defaults write com.apple.Safari TargetedClicksCreateTabs -bool true
    Is there a way I can do a two finger tap and have the link open in a new tab?
    I'm using safari 5.1 under Mac OSX 10.7 (Lion)
    -Thanks

    I FINALLY found a solution!  I was searching for a command-click plugin, and I found this app named "middleclick"  It simulates clicking a middle mouse button, with a 3 finger tap.  Now I can open links in a new tab with only one hand.  Great!
    http://clement.beffa.org/labs/projects/middleclick/

Maybe you are looking for

  • Unable to Partition Drive - 3TB Fusion Drive

    Hi, I have been trying to create a Windows Partition using Boot Camp: I get the error message "Your disk could not be partitioned" as soon as I hit Install. I then tried to Partition the drive in Disk Utility and get the error message "Partition fail

  • Photoshop CS6 PDF Saves Gray Type

    I am saving a combination of mobile screen shots with type descriptions below each screen. The first line and some last lines of type are appearing in gray instead of the standard black. I rasterized the type layers; however, this method thickens the

  • How to access XI_AF_MSG table in Composite Application Framework Java Code

    Hi Experts, I've no knowledge about PI. In one of my projects, I need access the XI_AF_MSG table of PI through java code in a composite application. How do I access this table? I've searched this forum for this query but the replies say that any SQL

  • Why String Search in not working in ADF.?

    Hi,     I've created application in ADF with Search Options. Search Operation is working for all the Integer Values in that page but its not working for String Values. I dont know why its not able to search String Values. My AppModule bean Code :    

  • Why can't I use 2 scrolling movieclips in the same movie?

    Hi all, I've created a couple of sites now that both use scrolling movieclips... If there is one scrolling mc, it works fine but as soon as I add another (using the same code and instance names - just a different mc) the up buttons fail to work prope