Ability to log activities against Partners

Is it possible for our sales users to log their activities directly against partners?  We have a requirement to log phone calls, tasks, emails, and appointments against our partner list / partner contact list.
Thank you,
Kelly

Hi Kelly,
Creation of Activities from Partners work center may be required to maintain the relationship between these two objects in Application studio.
Did you check the option to select more Roles in Activities and try to add your Partner ? again you can do this in Activities work center.
Thanks & Regards
Naren..

Similar Messages

  • I have lost the ability to log into find my iPhone using my daughters iTunes login to track her while she's driving

    I have lost the ability to track my daughters phone using her log in for find my iPhone since updat

    Does she have her own iCloud account?  You can have more than one iCloud account installed on a device, and some users install a secondary iCloud account which is common to others in the family to allow "Find My iPhone" to be used from one account while keeping separate iCloud contacts, mail, etc.
    But with iOS 7 although you can still have multiple iCloud accounts installed, only the "primary" iCloud account supports "Find my iPhone".  So if her iCloud account is the primary, you can no longer track her from your iCloud account.  Is that what happened in your case?

  • Logging activities in CIC

    Hi,
    I need information about the logging of activities in CIC.
    First thing I want to know is where are the activities that I already can see in "SPRO -> IMG -> Customer Service -> Customer Interaction Center (CIC) -> Customer-Specific System Modifications for CIC -> Define Customer-Specific Activities" stored/maintained?
    Second thing is how can I create new Activities that actually make sense. Meaning to create an activitiy that actually exists for the CIC like activity=AGENT_LOGIN description=AGENT LOGIN and not something like activity=TEST description=TEST (what kind of activities exist)?
    Third thing is where can I read those logs later?
    Thanks and regards,
    Alex

    Hi Suneel,
    You can use the transaction CRMD_BUS2000126 to see all the activities.
    Also, refer the table CRMD_ORDERADM_H and CRM_ORDER_INDEX.
    You can execute the report CRM_ORDER_READ to view the same, just pass the transaction number in Object ID field.
    <b>Reward points if it helps.</b>
    Regards,
    Amit Mishra

  • Lost ability to log into Calendars

    I've been working with the new wiki in 10.6, and this morning lost all ability for anyone to log into wiki calendars.
    "You don't have permission to view this calendar." Shows on the screen.
    I've rebooted the server. No other functionality seems to have been affected.
    Any ideas?

    This from a different thread worked for me:
    http://discussions.apple.com/thread.jspa?threadID=2136748&tstart=0

  • Lifelog not logging activities

    I am using lifelog with my swr10 and my xperia z1. It logs everything for me except for internet browsing, Facebook, music, and games. I have contacted Sony and they suggested clearing the lifelog data. I did this and it worked for about ten minutes. I told them this and their only other suggestion was to hard reset my phone. I thought I'd ask the forums before I did that. I hope you guys can help.
    Ella

    I have Z1 and SWR30 and if I browse internet using Chrome,in lifelog I geta small world icon where it says (chrome less than ... minutes). How is it for you? There is a setting at the end of all activities called edit,where you can uncheck any of them.
    All we have to decide is what to do with the time that is given to us - J.R.R. Tolkien

  • Make any database have the ability of logging within 10 seconds

    JDBMonitor is an open source project. It allows the developer to add the function of database execution logging to the application. It's so easy to use that the only thing you should do is appending "listenerconfig=/config.xml:url=" to the JDBC connection string of your application&#65292;without writing any code.
    With JDBMonitor,you can log the database execution in many ways,for example,to console,to file or to remote client through socket.JDBMonitor is extendible&#65292;so you can extend it to log the execution in other ways.The only thing you should do is writing a class implements the interface IDBListener.
    JDBMonitor is licensed under the terms of the GNU Lesser General Public Licence (LGPL). A copy of the licence is included in the distribution.
    Introduction
    Almost every large database application includes its own SQL execution logging function,which not only can help the developers to debug,but also can provide information for the DBA(DataBase Administrator).
    At the same time,a lot off code like”logger.logSQL(sql)” filling in the code.It’s drawbacks as follow:
    (1) It’s difficult to separate this codes from the business code.
    (2) It reduces the readability of the code.
    (3) It slows down the application.When the logger write the SQL to file or output to console,the programme will wait util the process to finish,I/O operation is time-consuming.
    (4) It’s not easy to record the execution time span,statement parameters or other information.
    (5) It’s hard to add log function to an application that cann’t be modify(for example,an application that without sourcecode),or hard to add log code(for example,an application that uses ORMapping ).
    JDBMonitor is different:
    (1) At most,only one line code modifying will be enough.The single code is: Class.forName("com.cownew.JDBMonitor.jdbc.DBDriver") and a single change in JDBC connection String,that is modify it from “jdbc:db2://10.74.198.247:50000/app”to” listenerconfig=config.xml:url= jdbc:db2://10.74.198.247:50000/app”. In some case this single code also have no need .for instance,if you use the DataSource of WebLogic ,Tomcat or other Server.
    (2) It uses another thread to log the SQL,so it almost doesn’t effect on the running speed.
    (3) It’s highly extendible&#65292;so you can extend it to log the execution in other ways.For example,you can write a class to send the SQL statement through Email.
    Getting JDBMonitor
    The latest stable version of JDBMonitor is available from the JDBMonitor web page:
    http://www.cownew.com/JDBMonitor
    Using JDBMonitor
    1 Drop jdbmonitor.jar to the classpath of your application
    2 Make the application load the JDBMonitor JDBC Driver.
    This step depends on the way you load the JDBC Driver
    (1) if you write code to load the JDBC Driver,for example:
    Class.forName(“com.microsoft.jdbc.sqlserver.SQLServerDriver”);
    Connection cn = DriverManager.getConnection(……);
    In this case,you must modify the “Class.forName” to load JDBMonitor JDBC Driver(“com.cownew.JDBMonitor.jdbc.DBDriver”) instead of the original database JDBC driver.
    For example:
    Class.forName(“com.cownew.JDBMonitor.jdbc.DBDriver”);
    Connection cn = DriverManager.getConnection(……);
    (2) if you specify the JDBC Driver class in config file,for example,datasource configfile or other file.
    Please modify the original database JDBC driver name to “com.cownew.JDBMonitor.jdbc.DBDriver”
    3 Make the JDBMonitor load the original database JDBC driver.
    The principle of JDBMonitor is to intercept and capture the SQL statement sending to database JDBC driver,it logs the SQL statement,then redirects the SQL statement to the original JDBC Driver,so JDBMonitor must register the original JDBC Driver to DriverManager first.
    The original JDBC Driver is defined at the “JdbcDrivers” segment of the config file.
    <JdbcDrivers>
    <JdbcDriver class=" com.mysql.jdbc.Driver"/>
    </JdbcDrivers>
    4 Appending the JDBMonitor information to the original JDBC connection string.
    The only change you should do it to append” listenerconfig=<configfilepath>:url=” before the original JDBC connection string.
    “<configfilepath>”is path of the confile file, file path below all support:
    /com/jdbmonitor/config.xml
    com/jdbmonitor/config.xml
    c:/ jdbmonitor /config.xml
    JDBMoinitor uses getClass().getResourceAsStream to load “/com/jdbmonitor/config.xml” and “com/jdbmonitor/config.xml” , and FileInputStream to load “c:/ jdbmonitor /config.xml”.
    5 Specify the DBListener to use:
    You can log the SQL execution in different ways,eg, to console,to file ,to remote client or others.
    We have developed such DBListeners in common use: FileDBListener, ConsoleDBListener, SocketDBListener&#12289;SocketDBListener.You can also develop DBListeners on your demond.
    The DBListener is defined at the “Listeners” segment of the config file:
    <Listeners>
    <!--ConsoleDBListener no arguments-->
    <Listener class="com.cownew.JDBMonitor.listenerImpl.ConsoleDBListener" arg=""/>
    <!--the arguments of FileDBListener is the file to log the SQL statement -->
    <Listener class="com.cownew.JDBMonitor.listenerImpl.FileDBListener" arg="c:/aaa.txt"/>
    <!--the arguments of SocketDBListener is the bound socket port of the listener server -->
    <Listener class="com.cownew.JDBMonitor.listenerImpl.SocketDBListener" arg="9527"/>
    </Listeners>
    That’s all!Start your application.Yeah,SQL statements are logged,we can see them in console,in file,even in remote client monitor.
    Examples
    mvnforum Example:
    You can get mvnforum from http://www.mvnForum.com. The version I use to demo is 1.0.
    (1) Open webapp\WEB-INF\classes\ mvncore.xml,re-config it:
    Before re-config:
    <driver_class_name>com.mysql.jdbc.Driver</driver_class_name>
    <database_url>listenerconfig=c:/log/jdbmonitor/config.xml:url= jdbc:mysql://localhost/mvnforum?useUnicode=true&amp;characterEncoding=utf-8</database_url>
    After re-config:
    <driver_class_name>com.cownew.JDBMonitor.jdbc.DBDriver</driver_class_name>
    <database_url>jdbc:mysql://localhost/mvnforum?useUnicode=true&amp;characterEncoding=utf-8</database_url>
    (2) create c:/log/jdbmonitor/config.xml.I only wanna log the SQL statement to text file,so I config it as below:
    <config>
    <Listeners>
    <!--the arguments of FileDBListener is the file to log the SQL statement -->
    <Listener class="com.cownew.JDBMonitor.listenerImpl.FileDBListener" arg="c:/log.txt"/>
    </Listeners>
    <JdbcDrivers>
    <JdbcDriver class="com.mysql.jdbc.Driver"/>
    </JdbcDrivers>
    </config>
    (3) Drop jdbmonitor.jar to webapp\WEB-INF\lib
    (4) Done!
    Jive example:
    You can get Jive from http://www.jivesoftware.com. The version I use to demo is Jive 2.0 beta.
    (1) Open http://localhost:8080/jive/admin/
    Fill “jdbc” with:com.cownew.JDBMonitor.jdbc.DBDriver
    Fill “server” with : c:/log/jdbmonitor/config.xml:url=jdbc:mysql://locahost/jive
    (3) Drop jdbmonitor.jar to WEB-INF\lib
    (4) create c:/log/jdbmonitor/config.xml as mvnforum Example.
    (4) Done!
    Code exmple:
    Though it’s not recommended,some application write the JDBC driver class name and JDBC connection string in code.
    For example:
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    Connection conn = null;
    PreparedStatement ps = null;
    try
    conn = DriverManager
    .getConnection("jdbc:odbc:MQIS");
    for (int i = 0; i < 1000; i++)
    ps = conn.prepareStatement("update T_Material set fid=fid");
    ps.execute();
    ps.close();
    } finally
    (1) Let’s recode a little:
    Class.forName("com.cownew.JDBMonitor.jdbc.DBDriver");
    Connection conn = null;
    PreparedStatement ps = null;
    try
    conn = DriverManager.getConnection("listenerconfig= c:/log/jdbmonitor/config.xml:url=jdbc:odbc:MQIS");
    for (int i = 0; i < 1000; i++)
    ps = conn.prepareStatement("update T_Material set fid=fid");
    ps.execute();
    ps.close();
    } finally
    (2) create c:/log/jdbmonitor/config.xml.I wanna log the SQL statement to text file and log to them to console so that it can help me to debug,so I config it as below:
    <config>
    <Listeners>
    <!--the arguments of FileDBListener is the file to log the SQL statement -->
    <Listener class="com.cownew.JDBMonitor.listenerImpl.FileDBListener" arg="c:/log.txt"/>
    <!--ConsoleDBListener no arguments-->
    <Listener class="com.cownew.JDBMonitor.listenerImpl.ConsoleDBListener" arg=""/>
    </Listeners>
    <JdbcDrivers>
    <JdbcDriver class="com.mysql.jdbc.Driver"/>
    </JdbcDrivers>
    </config>
    (3) Drop j dbmonitor.jar to classpath
    (4) Done!
    Listener
    We have developed such DBListeners in common use: ConsoleDBListener, FileDBListener,SocketDBListener,DataBaseDBListener.
    1&#12289;ConsoleDBListener
    ConsoleDBListener will write SQL Statement to Console.
    This Listener is easy to config:
    <Listener class="com.cownew.JDBMonitor.listenerImpl.ConsoleDBListener" arg=""/>
    2&#12289;FileDBListener
    FileDBListener will write SQL Statement to textfile:
    Config as below:
    <Listener class="com.cownew.JDBMonitor.listenerImpl.FileDBListener" arg="c:/aaa.txt"/>
    arg="c:/aaa.txt" means the SQL statement will be writen into c:/aaa.txt.
    3&#12289;SocketDBListener
    SocketDBListener works as a socket server,client can receive the SQL statement after connected to the socket server.
    Config as below:
    <Listener class="com.cownew.JDBMonitor.listenerImpl.SocketDBListener" arg="9527"/>
    arg="9527" means the SocketDBListener will listen at port 9527.
    Now,we have developed two kinds of socket client:SocketConsoleClient and SocketSwingClient.
    SocketConsoleClient works in console:
    SocketSwingClient works in Swing GUI:
    You can execute "java -classpath jdbmonitor.jar com.cownew.JDBMonitor.listenerImpl.sckListenerClient.SocketConsoleClient" to start SocketConsoleClient,and "java -classpath jdbmonitor.jar com.cownew.JDBMonitor.listenerImpl.sckListenerClient.SocketSwingClient" to start SocketSwingClient.
    If you wanna write client listener on your demand,please reference com.cownew.JDBMonitor.listenerImpl.sckListenerClient.ListenerClient and com.cownew.JDBMonitor.listenerImpl.sckListenerClient.IDBSocketClientListener.
    4&#12289;DataBaseDBListener
    DataBaseDBListener will record SQL statement to Database.
    Config as below:
    <Listener class="com.cownew.JDBMonitor.listenerImpl.DataBaseDBListener"
    arg="dburl=jdbc:odbc:MQIS;user=;password=;logtable=T_Log_SQLLog"/>
    "dburl=jdbc:odbc:MQIS;user=;password=;" declares the JDBC connection string of the target database;"logtable=T_Log_SQLLog" declares which table to record the SQL statement,default tablename is T_Log_SQLLog.
    If the JDBC driver class is different from the database to be monitored,please add the JDBC driver class in the "JdbcDrivers" tags of the config file.
    for example:
    <config>
    <Active>true</Active>
    <Listeners>
    <Listener class="com.cownew.JDBMonitor.listenerImpl.ConsoleDBListener" arg=""/>
    <Listener class="com.cownew.JDBMonitor.listenerImpl.DataBaseDBListener"
    arg="dburl=jdbc:odbc:MQIS;user=;password=;logtable=T_Log_SQLLog"/>
    </Listeners>
    <JdbcDrivers>
    <JdbcDriver class="com.microsoft.jdbc.sqlserver.SQLServerDriver"/>
    <JdbcDriver class="sun.jdbc.odbc.JdbcOdbcDriver"/>
    </JdbcDrivers>
    </config>
    The schema of "T_Log_SQLLog" is:
    The "create table" SQL statement can be found at:com/cownew/JDBMonitor/listenerImpl/dataBaseListener,(db2.sql,mssqlserver.sql,oracle.sql)
    DataBaseDBListener is database independent, You can record the SQL statement to any relation database.

    No one here would know why Apple has not chosen to implement such a feature nor how difficult it may be to do so. Submit your feedback directly to Apple using the appropriate link on the Feedback page:
    http://www.apple.com/feedback
    If they're people you call, why wouldn't you want them as contacts? You can link related people (e.g. spouses, children, etc.).

  • No admin ability when log in as "portal"

    I just installed the Oracle portal and logged in as "portal", but I don't see any admin function, it just give me "Home", "My Content", "Corporate Documents", what should I do?
    Thanks!

    Where is the "Builder" Tag? I login using orcladmin and it does not forward me to any page, just shows the login screen again with no error. I click to goto the portal home (/pls/portal/portal.home) and click on the Login link again and nothing happens probably because I am already logged in. However, I do not see any "Builder" link. How do I get to the "menu" or whatever to start configuring and creating portal pages?
    Any help is greatly appreciated... Thanks!!

  • Ability to log activity for Mail.app?

    Having a major problem trying to establish an IMAP account with Mail.app. I am getting generic errors and thus haven't found anything on this board or google.
    Is there a way to trace or log a mail account setup? I do see a why to trace mail activity via terminal but I am looking for something that can troubleshoot the setup issue I am having
    Thanks

    Open /Applications/Utilities/Console and do either File > Open Console Log, or File > Open System Log, or both, so that Console displays the contents of both system.log and console.log.
    Apparently, you can tell Mail to provide detailed log information as described in the following article (I haven’t tried it myself):
    Enable detailed Mail.app logging options
    Also, Mail comes with a Turn On Logging AppleScript that I haven’t tried either, but that was discussed some time ago in the following thread:
    MAIL LOG???
    And here is some additional information you may also find useful:
    http://developer.apple.com/bugreporter/bugbestpractices.html#Mail

  • Java Logging Activities

    hello,
    is there any sort of TextArea box, formatted in a way that you can add log messages, like disconections, attempts, etc.
    with a circular limit.
    any ideas if there is a class existing? or code it all by hand ?

    Hello,
    I have written some code, but not really tested it yet. It is for use with Java 1.4 logging and is a TextAreaOutputStream that you can then use with logging as a handler. m_logger is an instance of Logger.
    JTextArea ta = getlog_pane();
    LogIt.addHandler(ta,3000);
    /** Adds a user declared handler. */
    static public void addHandler(JTextArea text_area, int line_count_limit) {
         TextAreaOutputStream taos = new TextAreaOutputStream();
         taos.setTextArea(text_area);
         taos.setLineCountLimit(line_count_limit);
         StreamHandler sh = new StreamHandler(taos,new SimpleFormatter());
         m_logger.addHandler(sh);
    }     // addHandler
    07/05/2009 MAW ENH0000000 First written
    package com.pacsol.util;
    import java.io.IOException;
    import java.io.OutputStream;
    import java.util.logging.Level;
    import javax.swing.JTextArea;
    /** An OutputStream that sends text to a JTextArea (which you must supply).
    * This has been designed for use with LogIt so that log entries can be
    * sent to a log window. */
    public class TextAreaOutputStream extends OutputStream {
         static final int c_line_count_limit_not_set = -1;
         private JTextArea m_text_area;
         private int m_line_count_limit = c_line_count_limit_not_set;
         void setTextArea(JTextArea ta) {
              m_text_area = ta;
         }     // setTextArea
         void setLineCountLimit(int line_count_limit) {
              m_line_count_limit = line_count_limit;
         }     // setTextArea
         public void write(byte[] arg0, int arg1, int arg2) throws IOException {
              String ss = new String(arg0,arg1,arg2);
              m_text_area.append(ss);
              enforce_line_count_limit();
         }     // write
         public void write(byte[] arg0) throws IOException {
              String ss = new String(arg0);
              m_text_area.append(ss);
              enforce_line_count_limit();
         }     // write
         public void write(int arg0) throws IOException {
              byte[] bb = new byte[] {(byte)arg0};
              String ss = new String(bb);
              m_text_area.append(ss);
              enforce_line_count_limit();
         }     // write
         private void enforce_line_count_limit() {
              if (m_line_count_limit == c_line_count_limit_not_set) {
                   return;     // not set
              }     // if
              int line_count = m_text_area.getLineCount();
              if (line_count <= m_line_count_limit) {
                   return;
              }     // if
              int diff = m_line_count_limit - line_count;
              try {
                   int offset = m_text_area.getLineEndOffset(diff);
                   m_text_area.replaceRange("",0,offset);     // remove first bit
              }     // try
              catch (Exception e) {
                   LogIt.log(Level.WARNING, "Error trying to limit lines.",e);
              }     // catch
         }     // enforce_line_count_limit
    }     // TextAreaOutputStreamHope that helps.
    Mark W.

  • Has anybody else had problems with an iPhone 4s loosing the ability to log on to wifi. My network say is apples fault due to hardware issues in the latest release. Anyone know anymore?

    Can anyone help with this issue please?

    Hi Chris, the problem is after the ios7.1 update my wifi will no longer connect. I contacted my network and they said they have received an email from Apple saying its a hardware issue and nothing my network can do ( soft reset, general reset or factory reset wont work and to contact apple directly. I was told that this is most common on the iPhone 4s. Online I have seen people being offered an option to buy out of warranty phones because this issue can't be fixed? That can't be correct can it?

  • SLG1 Transfer logs stopped logging X-fer activities

    Hello Experts,
    We are on GTS 10.0 and have come across an issue where the transfer log using SLG1 txn has stopped logging activities for the Orders flowing from ECC.
    Could this be because the log limit has exceeded and if there is a way to make it work without having to delete the historical log that has been there for last 5 months since Go-Live?
    Any help is much appreciated..
    Regards,
    Prashant.

    Hi Prashant,
    Use SLG1 to display the last logs available.  In the top pane of the results screen, you can see the Log Number.  Does it look as though the Number Range is exhausted?  If it is, then all other logging should also have stopped at that time - did you check the logs for other objects?
    Regards,
    Dave

  • Ability to park/ transfere calls and log in/ out u...

    Hi!
    I need to become able to park and transfere calls to others using the *# commands. Also the ability to log in/ out of the Netcom Trådløs Bedrift-system using the commands *101# and *102#.
    When will this become able on the N900?

    Hello dorisg and welcome to the Apple Discussion Boards.
    Ernie Stamper referred me to your post. I live in Dubai and work in Abu Dhabi; I regularly use iChat to communicate with family in the United States. I can assure you that iChat works both via Etisalat (in both Dubai and Abu Dhabi) and via DIC Telecom.
    You should try Defcom's suggestion of changing the port, because I believe Etisalat does indeed block Port 5190; however Port 443 works.
    You should also make sure that all the correct iChat ports are open in System Preferences. Ralph Johns is another one of the iChat gurus; check out his web pages at http://www.ralphjohnsuk.dsl.pipex.com/
    If you still cannot connect, or you'd rather have somebody walk you through the settings over the telephone, send me an email (click on my name to find my email address in my profile) and we will get in touch offline.
    Good luck,
    DXB Law

  • Ability log and track the time and expense reports of the sales employees

    Hello Experts
    Ability to log and track the time and expense reports of the sales employees.
    Can we do this through WEB UI
    Please revert.
    Regards

    Hello
    Thanks for the reply
    I thought of storing time zone in the time and use session variable to pick up user's log in info along with time zone that he is associated with.
    However, if it has to be maintained by a table, then it should be manually updated right? I don't think that's what I want to do because a lot of our users travel a lot for short time, so they may not have their time zone info updated in the DB table when they are traveling somewhere else for a brief period while accessing OBIEE.
    So my question is, how can I pick up user's locale time zone setting and make sure that the data, such as hour conversation are converted along with the displayed time stamp?
    Thanks

  • Can't log in after upgrading to mavericks

    After upgrading to Mavericks, I at first seemed to lose the 2nd HD (all data), then list the ability to log in
    Help!

    If the user account is associated with an Apple ID, and you know the Apple ID password, then maybe the Apple ID can be used to reset your user account password.
    Otherwise*, boot into Recovery mode. When the OS X Utilities screen appears, select
    Utilities ▹ Terminal
    from the menu bar. In the window that opens, type this:
    res
    Press the tab key. The partial command you typed will automatically be completed to this:
    resetpassword
    Press return. A Reset Password window opens. Close the Terminal window to get it out of the way.
    Select your boot volume ("Macintosh HD," unless you gave it a different name) if not already selected.
    Select your username from the menu labeled Select the user account if not already selected.
    Follow the prompts to reset the password. It's safest to choose a password that includes only the characters a-z, A-Z, and 0-9.
    Select
     ▹ Restart
    from the menu bar.
    You should now be able to log in with the new password, but your Keychain will be reset (empty.) If you've forgotten the Keychain password (which is ordinarily the same as your login password), there's no way to recover it.
    *Note: If you've activated FileVault, this procedure doesn't apply. Follow instead these instructions.

  • Use of Sales BOM to force ATP against Bulk Material?

    Background:
    Our business was recently acquired, and we have migrated to the parent company's R/3 system.  In our previous MRP system (R/2), we planned, produced, and shipped a single bulk Material ID in Trucks, Rail Cars, Flexi-Bags, and Iso-Tainers.  In the new system, specific Material IDs are now required for each of these modes.  However, we do not store the inventory in these modes, nor do we wish to plan at this detailed level.
    Considered So Far:
    Initial suggestion was to use A.T.O. to look through a BOM and automatically create production orders for each customer order. However, this seems to add additional complexity that we do not really need, and makes changing order dates more challenging (have to move both the order and the accompanying Prod. Order).
    Desired Outcome:
    Order is entered and priced based upon the mode-specific Material ID, but inventory is relieved from the Bulk material.  In our previous R/2 system, there was a field on the material master called "Std.Prod." which stood for Standard Product Link.  We used it for synonymous products where we produced and inventoried under one name, but sold under several different names.  The customer materials were set up as type SALE and referenced the inventoried material, set as type FINI, in this Std. Prod. field.  Thus, at the header level, the user saw the SALE material, but for planning and at the batch level, the system showed the FINI.
    Options?
    I am told that, due to the amount of custom coding and user exits surrounding outputs and interfaces to EDI and other external systems, the use of Material Determination would require too much testing and potentially too much development work.  But, is it the best / correct solution to the problem?  Because right now, I don't have the ability to perform ATP against the inventoried Material, so nothing confirms.  Would the use of a 1 to 1 Sales BOM offer anything different?
    Many Thanks in Advance,
    J.P.

    Hello JP
    Material Determination (MD) works with Consignment orders, only you need to assign a MD procedure to the requisite sales document type in config ( TO code OV14). Product substitution, which is a specialized form of MD, makes use of special item cats like TAX and TAPS or TAPA and TAN for main and substitute items respectively, but you can always make copies of them and use them with consignment orders also in conjunction with item category usages like PSHP. PSEL, PSA1 and PSA2. There could be resultant issues, but unless you test you won't know them all.
    Your second question about 'Sale would go against the finished good (Truck / Rail material) while the production costs go against the Bulk', brought a new realization in me. You are ordering, pricing and delivering Truck or Rail materials, but those requirements have to be converted to Production orders for bulk material, so from a Sales and Distribution (SD) point of view you  don't need anything extra, therefore work with you Production Planning (PP) consultant to convert the requirements at  PP end?? May be without resorting to MD or BOMs in Sales, you can work with your PP consultant and with standard config or custom development, you may realize your desired outcome.
    Also as long as cost is maintained in the sales Material (Truck for example)  with due regard to the additional costs in converting Bulk to truck, you should be fine. Follow the example below:
    Standard cost of 1 ton , say X, is stored in Bulk Material master.
    Now if there is no additional cost and you just load the bulk material into a truck and if a Truck is 10 ton, then Truck material would have 10X in its material master for cost.
    But if there is some other material  and/or  labor involved in converting bulk to Truck and their cost is y, then you will have (10x+y) in your truck material. Also it is worthwhile to capture the additional cost in the Production/Assembly order via components and operations.
    Your problem is not insurmountable, but you need to assemble a team of SD. PP, MM and CO experts to design an integrated solution for you.

Maybe you are looking for

  • ASA 5505 Site to Site VPN issue

    I have been trying to configure a siste to site vpn for a few days now, but not able to get it to connect. The only difference between the two, is one has a dynamic ip. this vpn isn't a priority, so there isn't a need to have the dynamic moved to a s

  • How do I display font one character at a time?

    Right now the way I present my font is it all appears instanenous. I don't know if this is even possible or not, but I would like to find a way to have the font be displayed one character at a time over the course of a variable amount of seconds. For

  • Finder Window Type Size

    I have a client who wants to increase the size of the type in Finder Windows.... NOT the icon type size on the desktop.... is this possible?

  • Convert Native 16:9 SD to HD

    Hello all, I have a production that was shot a while ago in SD, but it was shot in native 16:9 SD (non anamorphic). The client now needs the footage from this same production in HD because they are going to be running it on television. The TV Station

  • Passing Mutivalue Constant Query Filter is not working

    Hi All, I am using Webi4.0.On the Query panel when I try to pass multiple values to a constant filter it does not work.For example if I try to apply State filter in my Query and if I select Constant as its type and type A,B then Webi takes only A in