T020 - Adding new entries

Having taken a copy of a standard FI transaction, I need to add an entry in T020 for it to work.
Is there any IMG entry for this, or is the entry made to the table direct in SM30 ?

YOu will reach the same table maintenance from SAP IMG or sm30.
YOu can maintain the entries in sm30 as well.
Take help of a Functional consultant before you make changes though.
Regards,
ravi

Similar Messages

  • Adding new entry in table J_1INEXCGRP

    Hi,
    I am MM functional,  due to some system error , for the excsie group I required to manitain the entry in table J_1INEXCGRP,  as that customization part is not included in request,  now I want to confirm which methode to be use
    SE12->Utilities -> Table content -> create entry   or  with SE16N
    can you please give the stpes for adding a new entry in this table it has only two fileds
    MANDT
    J_1IEXCGRP
    regards,
    zafar
    Moderator Message: Spoon-feeding is not entertained here.
    Edited by: kishan P on Jan 25, 2011 4:58 PM

    Hi Alok,
    Hope this steps - code will help you to resolve this issue.
    1. Create A Group for your table control. In Screen Painter.
    2. Write Screen modification routine for the same
    it can be like this..
    MODULE status_0100 OUTPUT.
      SET PF-STATUS 'SCREEN_100'.
      LOOP AT SCREEN.
        IF screen-group1 = 'MOD'.
          IF flag = ' '.
            screen-input = '0'.
          ELSEIF flag = 'X'.
            screen-input = '1'.
          ENDIF.
          MODIFY SCREEN.
        ENDIF.
      ENDLOOP.
    ENDMODULE.
    3. This will disable the display of the Fields in TABLE Control.
    4. in the PBO loop of the table control. Identify the lines which u want to keep active.
    Hope this will help
    <i><b>** Reward points to helpful answer</b></i>

  • Table TFIBLOPAY - Impact of Adding New Entries

    Hello SMEs,
    I’m looking for some expertise surrounding the use of table TFIBLOPAY “Origin on Online Payments”. I’ve only been able to maintain via SM30 and had to add a value in order to configure the following item in SPRO: Financial Accounting --> Bank Accounting --> Business Transactions --> Payment Transactions --> Online Payments --> Define Process Steps.
    By doing this, I was able to set Payment Requests from an Origin to be automatically released.   Is this the proper procedure to do?
    Secondly, when making a change to this table, I received a warning from SAP stating the entry “may be overwritten”.  Is this warning only for SAP-delivered items someone changes or does it pertain to items that are added?
    Thirdly, I only maintained an entry in field TFIBLOPAY-ORIGIN; none of the other columns in the table were updated.  Are other values expected?
    Thanks,
    Dan
    When making this change, I received the following message:
    Do not make any changes (SAP entry) Message no. SV117 Diagnosis You have changed an entry which, according to the name space definition is managed by SAP. System Response Your changes may be overwritten at each subsequent upgrade or release change. Procedure Avoid changing this data. If the change is inavoidable, document it carefully, so that it can be repeated, if necessary, after an upgrade or release change. The best way to do this is to put the data in a change request, which you can export before an upgrade or release change, and import again afterwards.   X

    HI,
    please search in SCN forum before you post:
    Re: Adding a ValueField to an existing Operating Concern?
    Best regards, Christian

  • Reminder app problem adding new entry.

    I updated my iPad to IOS 5. Testing the "reminder" app lets me easily add new reminders. After three tries all the buttons under "edit" disappeared. Is there any way to reset/reinstall the app or to get the buttons back. As I'm from Germany maybe there are not the correct translations for "Erinnerungen" (Reminder) or "Bearbeiten" (Edit). Sorry.
    Can somebody help?

    The format of your ldif file is incorrect and does not containt valid LDIF format (see RFC 2849)
    First an empty line is a separator for entries within LDIF, so the data appears as several LDAP entries not just one.
    Second, the attribute name is attributeTypes and not attributeType.
    Third, there must be a colon ':' separator between attributetypes and the value for that attribute type definition.
    Regards,
    Ludovic

  • Eliminating the auto sync action when adding new entry in calendar on my BB Curve 8330

    Hi everyone,
    I am using my Yahoo e-mail as my primary profile for my Calendar (CICAL) and Messaging (CMIME) as my Default Services.  I do a daily sync with my Outlook 2003 calendar, notes, contacts, etc, via USB but I do not sync my BB calendar with my Yahoo calendar (I don't even use Yahoo calendar for that matter).  Every time I edit an entry on my BB calendar I see the arrows on the top right corner flashing.  I guess this means my Curve is trying to sync the changes to some other application, perhaps Yahoo calendar.  How do I turn this feature off?  I would like to minimize the amount of wireless transmission from my BB and I feel that this is an unnecessary activity since I'm not wirelessly syncing my calendar to anything else.
    Thank you.
    Solved!
    Go to Solution.

    Right I agree. The BlackBerry will alays display those arrows when it's sending/receiving data. The only way it won't is if you turn the radio off.
    If someone has been helpful please consider giving them kudos by clicking the star to the left of their post.
    Remember to resolve your thread by clicking Accepted Solution.

  • IH08 : Equipment list is adding new entry instead of updating with current

    Hi,
    The list is displaying the equipment many times in the list.
    According to the requirement the equipment should be displayed only once with the current function location it is placed.
    Please help.

    Hi,
    The list is displaying the equipment many times in the list.
    According to the requirement the equipment should be displayed only once with the current function location it is placed.
    Please help.

  • Warning: Unable to create new entry, caught: "javax.ejb.CreateException", message is:

    Warning: Unable to create new entry, caught: "javax.ejb.CreateException", message is: "Error creating EntityBean: Io exception: The Network Adapter could not establish the connection".
    while executing JSP:<%
    * add.jsp
    * Adds a new entry through EmployeeBean. This is a JSP that serves 2
    * functions. First of all, when called with no arguments, it will display a
    * table with a few input fields. The user should enter empNo, empName and
    * salary of the new record to be added. When she submits this
    * information, it is sent to this page again. If it is successful, then the
    * user can continue adding new entries. If it is not, then the old data will
    * be displayed, and a warning message will be shown to her.
    %>
    <%@ page import="com.webstore.*,java.io.*,java.util.*,javax.naming.*" %>
    <%
    // Make sure this page will not be cached by the browser
    response.addHeader("Pragma", "no-cache");
    response.addHeader("Cache-Control", "no-store");
    // We will send error messages to System.err, for verbosity. In a real
    // application you will probably not want this.
    PrintStream errorStream = System.err;
    // If we find any fatal error, we will store it in this variable.
    String error = null;
    // In a moment we will check if all columns were passed to this page
    String param_1 = "";
    String param_2 = "";
    String param_3 = "";
    long dptNo = 0;
    String dptName = null;
    // This variable indicates what function of this page is currently used. If
    // this page is called with parameters, then a new entry should be
    // added. In that case this variable is true.
    boolean submitting = false;
    // We will first attempt to get the reference to EmployeeHome from the
    // session. The "list.jsp" page sets this attribute in the session.
    DepartmentHome home = (DepartmentHome) session.getAttribute("DepartmentHome");
    if (home == null) {
    error = "No previous connection to DepartmentBean.";
    } else {
    // Attempt to get all 3 parameters from the session
    param_1 = request.getParameter("DPTNO");
    param_2 = request.getParameter("DPTNAME");
    // If all 3 parameters are specified, then this is probably a submission by
    // this very page. Note that if the user left one of the fields blank, then
    // the corresponding parameter will be "", not null.
    if (param_1 != null && param_2 != null) {
    param_1 = param_1.trim();
    param_2 = param_2.trim();
    submitting = true;
    // In the following variable we will store a (non-fatal) warning message. This
    // message will be displayed in the page, but so will the submission form.
    String warning = null;
    if (submitting) {
    warning = "";
    // If there is an empty param_1, param_2 and/or param_3, then this will be noted
    // in the warning message.
    if ("".equals(param_1)) {
    warning = "Null param_1 specified. ";
    if ("".equals(param_2)) {
    warning += "Null param_2 specified. ";
    // If we don't have a warning message yet, then we will attempt to create
    // a new record.
    if ("".equals(warning)) {
    try {
    dptNo = (long)Long.parseLong(param_1);
    dptName = new String(param_2);
    Department rec = (Department) home.create(dptNo);
    rec.setDptname(dptName);
    // empty columns after insert for effect
    param_1 = "";
    param_2 = "";
    // If we got this far, then there was no problem detected.
    warning = null;
    } catch (Exception e) {
    // Set the warning variable to indicate a problem.
    warning = "Unable to create new entry, caught: \"" +
    e.getClass().getName() + "\", message is: \"" +
    e.getMessage() + "\".";
    // Decide what the title will be.
    String title;
    if (error != null) {
    title = "Error";
    } else {
    title = "com.webstore | Add entry";
    %>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
    <HTML>
    <HEAD>
    <TITLE><%= title %></TITLE>
    </HEAD>
    <BODY bgcolor="#FFFFFF">
    <H1><%= title %></H1>
    <%
    // If there was a fatal error, then display the error message
    if (error != null) {
    %>
    <P><BLOCKQUOTE><%= error %></BLOCKQUOTE>
    <%
    // Otherwise display a table with fields to be filled in.
    } else {
    // If there was a warning, then display it.
    if (warning != null) {
    %>
    <TABLE border="1" bgcolor="#FF2222">
    <TR><TD><FONT color="#FFFFFF"><STRONG>Warning: <%= warning %></STRONG></FONT></TD></TR>
    </TABLE>
    <%
    } /* if */
    // Display the table with fields. There are two columns. The left column
    // contains the names of the fields, while the right column contains the
    // fields.
    %>
    <FORM action="dptadd.jsp" method="GET">
    <P><TABLE border="1">
    <TR>
    <TD><STRONG>DptNo:</STRONG></TD>
    <TD><INPUT type="text" name="DPTNO" value="<%= param_1 %>"></INPUT></TD>
    </TR>
    <TR>
    <TD><STRONG>DptName:</STRONG></TD>
    <TD><INPUT type="text" name="DPTNAME" value="<%= param_2 %>"></INPUT></TD>
    </TR>
    <TR>
    <TD colspan="3" align="center"><INPUT type="submit" value="Add this entry"></INPUT></TD>
    </TR>
    </TABLE>
    </FORM>
    <%
    } /* else */
    %>
    <P><TABLE border="1">
    <TR><TD>Back to list</TD></TR>
    </TABLE>
    </BODY>
    </HTML>
    Please guide me..

    Rajive,
    This is the same problem as in your other post:
    sql is running very slow
    So please refer to my answer there.
    Good Luck,
    Avi.

  • Impact of new entries in Table T005

    Hi All,
    Can anyone please guide me that adding new entries in table T005 will have critical impact at which all places?
    I understand that this is the master table for countries, but I am not too sure that where all it can impact critically.
    Thanks.

    Hi,
    Please use the following SPRO node to add new country codes:
    SAP Netweaver - General Settings - Set countries.
    Here after you add the new country code using "Define countries", you should check rest of the steps to make sure that all the relevant places in the system are configured for the newly added country code.
    One more point: Make sure that you are using ISO standard .
    Regards,
    Dilek

  • Crash While Adding New Calendar Items

    I've tried adding new entries into the Calendar and am getting an odd crash back to the Home screen immediately after setting the event's time to "All Day" ('flipping the switch' for All Day). It's consistent and repeatable. I realize that random crashes are pretty much going to be common here in the initial launch of the Software Upgrade but I was kind of hoping that this wouldn't be one of them. It doesn't reset the iPod or stop the music playing-- which actually surprised me in that respect-- but it does fail to save the event. Anyone else have this issue, or any other 'reliable' crashes?

    Interesting.
    I see a definite delay, and I thought it might crash, but it doesn't.
    Try replacing the data on next sync - the option is at the bottom of the info tab in iTunes.
    Scott

  • Added new fields in vendor master in xk01 but data is not getting saved

    Hi experts,
    To add new fields in vendor master i have followed the following steps :
    1.) Appended a structure ZRTGS in LFA1 table with required fields and activated
    2.) Added new button in xk01( vendor master ) using spro -> logistics-general -> business partner -> vendors ->
    control ->adoption of customer's owaster data fields -> prepare modification free-enhancement of vendor master record
    Created a screen group ZR and defined label tab pages with function code ZRTGS and saved entries
    3.) Created a implementation for BADIs VENDOR_ADD_DATA and VENDOR_ADD_DATA_CS.
    4.) Created a program with my own subscreen for the required fields
    The button is getting displayed in XK01, XK02 and XK03 respectively. Whenever the button is clicked the subscreen with
    the fields is also displayed. But whenever i try to save the data in either XK01 or XK02 it is not getting saved in to the
    database table LFA1.
    Request your help in this regard.
    Thanks in Advance.

    Hi,
    You may need to check this include .
    EXIT_SAPMM06E_008  -->Import Data from Customer Subscreen for Purchasing Document
    Thanks,
    vamshi

  • Not able to set Weblogic Runtime on eclipse while adding new weblogic srvr

    Hi Everyone,
    I downloaded Oracle Integration pack for eclipse by clicking at "Download additional server adapters". I am not able to set Weblogic Runtime on eclipse while adding new weblogic server.
    I am trying to give following values:
    Name :Oracle WebLogic Server 10gR3 (2)
    Weblogic home :C:\bea\wlserver_10.3
    Java home: C:\bea\jrockit_160_05
    Below it I am getting "No applicable extension found" and finish button is greyed out.
    Please help in telling what is wrong. Never faced such an issue.
    Thanks
    SM

    I found this problem too.
    OS:windows7、eclipse:helios、oepe:Part of Oracle Enterprise Pack for Eclipse 11.1.1.7.3
    <workspace>\.metadata\.log:
    !ENTRY org.eclipse.osgi 2 1 2012-06-05 00:16:06.357
    !MESSAGE NLS unused message: enter_new_hit_count in: org.eclipse.wst.jsdt.debug.internal.ui.messages
    !ENTRY org.eclipse.osgi 2 1 2012-06-05 00:16:06.357
    !MESSAGE NLS unused message: exception_occurred_setting_bp_properties in: org.eclipse.wst.jsdt.debug.internal.ui.messages
    !ENTRY org.eclipse.osgi 2 1 2012-06-05 00:16:06.357
    !MESSAGE NLS unused message: hit_count_must_be_positive in: org.eclipse.wst.jsdt.debug.internal.ui.messages
    !ENTRY org.eclipse.osgi 2 1 2012-06-05 00:16:06.357
    !MESSAGE NLS unused message: no_description_provided in: org.eclipse.wst.jsdt.debug.internal.ui.messages
    !ENTRY org.eclipse.osgi 2 1 2012-06-05 00:16:06.357
    !MESSAGE NLS unused message: scripts in: org.eclipse.wst.jsdt.debug.internal.ui.messages
    !ENTRY org.eclipse.osgi 2 1 2012-06-05 00:16:06.357
    !MESSAGE NLS unused message: select_javascript_file in: org.eclipse.wst.jsdt.debug.internal.ui.messages
    !ENTRY org.eclipse.osgi 2 1 2012-06-05 00:16:06.357
    !MESSAGE NLS unused message: set_bp_hit_count in: org.eclipse.wst.jsdt.debug.internal.ui.messages
    !ENTRY org.eclipse.osgi 2 1 2012-06-05 00:16:06.357
    !MESSAGE NLS unused message: suspend_target in: org.eclipse.wst.jsdt.debug.internal.ui.messages
    !ENTRY org.eclipse.osgi 2 1 2012-06-05 00:16:06.357
    !MESSAGE NLS unused message: suspend_thread in: org.eclipse.wst.jsdt.debug.internal.ui.messages
    !ENTRY org.eclipse.osgi 2 1 2012-06-05 00:16:06.357
    !MESSAGE NLS unused message: the_argument_0_is_not_valid in: org.eclipse.wst.jsdt.debug.internal.ui.messages
    I tried the weblogic 10.3.1、10.3.3、10.3.4、10.3.5 still show the info that "No applicable extension found" and finish button is greyed out.
    What is the reason?
    thanks!

  • Adding new node to the Clusterware fails with the root.sh script.

    Dear All,
    I had successfully added third node to the existing 2 node cluster. After adding new node I need to run the root.sh scripts, but it was faling with the below error.
    Please help me with the below issue:
    Instantiating scripts for add node (Monday, April 8, 2013 3:23:14 PM EDT)
    . 1% Done.
    Instantiation of add node scripts complete
    Copying to remote nodes (Monday, April 8, 2013 3:23:16 PM EDT)
    ............................................................................................... 96% Done.
    Home copied to new nodes
    Saving inventory on nodes (Monday, April 8, 2013 3:31:40 PM EDT)
    . 100% Done.
    Save inventory complete
    WARNING:
    The following configuration scripts need to be executed as the "root" user in each new cluster node. Each script in the list below is followed by a list of nodes.
    /u01/app/11.2.0/grid/root.sh #On nodes svphxwgdbprd06
    To execute the configuration scripts:
    1. Open a terminal window
    2. Log in as "root"
    3. Run the scripts in each cluster node
    The Cluster Node Addition of /u01/app/11.2.0/grid was successful.
    Root.SH Script Log:
    [root@svphxwgdbprd06 ~]# /u01/app/11.2.0/grid/root.sh
    Performing root user operation for Oracle 11g
    The following environment variables are set as:
    ORACLE_OWNER= oracle
    ORACLE_HOME= /u01/app/11.2.0/grid
    Enter the full pathname of the local bin directory: [usr/local/bin]:
    The contents of "dbhome" have not changed. No need to overwrite.
    The contents of "oraenv" have not changed. No need to overwrite.
    The contents of "coraenv" have not changed. No need to overwrite.
    Creating /etc/oratab file...
    Entries will be added to the /etc/oratab file as needed by
    Database Configuration Assistant when a database is created
    Finished running generic part of root script.
    Now product-specific root actions will be performed.
    Using configuration parameter file: /u01/app/11.2.0/grid/crs/install/crsconfig_params
    Creating trace directory
    User ignored Prerequisites during installation
    OLR initialization - successful
    Adding Clusterware entries to inittab
    CRS-2672: Attempting to start 'ora.mdnsd' on 'svphxwgdbprd06'
    CRS-2676: Start of 'ora.mdnsd' on 'svphxwgdbprd06' succeeded
    CRS-2672: Attempting to start 'ora.gpnpd' on 'svphxwgdbprd06'
    CRS-2676: Start of 'ora.gpnpd' on 'svphxwgdbprd06' succeeded
    CRS-2672: Attempting to start 'ora.cssdmonitor' on 'svphxwgdbprd06'
    CRS-2672: Attempting to start 'ora.gipcd' on 'svphxwgdbprd06'
    CRS-2676: Start of 'ora.cssdmonitor' on 'svphxwgdbprd06' succeeded
    CRS-2676: Start of 'ora.gipcd' on 'svphxwgdbprd06' succeeded
    CRS-2672: Attempting to start 'ora.cssd' on 'svphxwgdbprd06'
    CRS-2672: Attempting to start 'ora.diskmon' on 'svphxwgdbprd06'
    CRS-2676: Start of 'ora.diskmon' on 'svphxwgdbprd06' succeeded
    CRS-2676: Start of 'ora.cssd' on 'svphxwgdbprd06' succeeded
    ASM created and started successfully.
    Disk Group DATA created successfully.
    clscfg: -install mode specified
    clscfg: EXISTING configuration version 5 detected.
    clscfg: version 5 is 11g Release 2.
    Successfully accumulated necessary OCR keys.
    clscfg: Arguments check out successfully.
    NO KEYS WERE WRITTEN. Supply -force parameter to override.
    -force is destructive and will destroy any previous cluster
    configuration.
    Failed to initialize Oracle Cluster Registry for cluster, rc 105
    Oracle Grid Infrastructure Repository configuration failed at /u01/app/11.2.0/grid/crs/install/crsconfig_lib.pm line 6818.

    The document references posted already are very good ones. However, I would say that on personal experience (on Solaris and 10gR2) that the addnode tools gave me nothing but problems. Luckily, I was able to build a parallel cluster (with three nodes) on other hardware and then move the databases across via DataGuard. It was quicker and cleaner (and easier!) that way...
    Good luck!

  • Cannot create and add a new entry to LDAP

    Hi,
    I'm pretty new at LDAP and JNDI, i've been trying to create and add a new entry to the directory but somehow it's not working.
    here is my code and I would appreciate it if someone can help.
    import java.util.Hashtable;
    import javax.naming.ldap.*;
    import javax.naming.directory.*;
    import javax.naming.*;
    import javax.net.ssl.*;
    import java.io.*;
    public class Newuser
         public static void main (String[] args)
              //LDAPEntry myEntry = new LDAPEntry();
              Hashtable<String, String> env = new Hashtable<String, String>(11);
              String adminName = "CN=ldap_admin,o=JNDITutorial,dc=img,dc=org";
              String adminPassword = "secret";
              env.put(Context.INITIAL_CONTEXT_FACTORY,"com.sun.jndi.ldap.LdapCtxFactory");
              //set security credentials, note using simple cleartext authentication
              env.put(Context.SECURITY_AUTHENTICATION,"simple");
              env.put(Context.SECURITY_PRINCIPAL,adminName);
              env.put(Context.SECURITY_CREDENTIALS,adminPassword);
              //connect to my domain controller
              env.put(Context.PROVIDER_URL, "ldap://localhost:389/o=JNDITutorial,dc=img,dc=org");
                   // Create the initial directory context
                   //JNDILDAPConnectionManager jndiManager = new JNDILDAPConnectionManagerImpl();
                  try{
                       DirContext ctx = new InitialDirContext(env);
                        System.out.println("Connection to LDAP server done" );
                       final String groupDN ="ou=people,o=JNDITutorial,dc=img,dc=org";
                      //DirContext dirCtx = jndiManager.getLDAPDirContext();
                      People people = new People("Thiru","Thiru","Thiru Ganesh","Ramalingam","ou=people","[email protected]");
                      // The Common name must be equal in Attributes common Name
                      ctx.bind("cn=Thiru," + groupDN, people);
                      System.out.println("** Entry added **");
                      //jndiManager.disConnectLDAPConnection(ctx);
                  }catch(NamingException exception){
                      System.out.println("**** Error ****");
                      exception.printStackTrace();
                      System.exit(0);
    }here is the Object class People that i'm trying to instantiate
    public class People implements DirContext {
         public People(String uid,String cn,String givenname,String sn,String ou,String mail) {
        BasicAttributes myAttrs = new BasicAttributes(true);  //Basic Attributes
        Attribute objectClass = new BasicAttribute("objectclass"); //Adding Object Classes
        objectClass.add("inetOrgPerson");
        /*objectClass.add("organizationalPerson");
        objectClass.add("person");
        objectClass.add("top");*/
        Attribute ouSet = new BasicAttribute("ou");
        ouSet.add("people");
        ouSet.add(ou);
        myAttrs.put(objectClass);
        myAttrs.put(ouSet);
        myAttrs.put("cn",cn);
        myAttrs.put("sn",sn);
        myAttrs.put("mail",mail);
    ...the message i keep getting is:
    javax.naming.directory.SchemaViolationException: [LDAP: error code 65 - entry has no objectClass attribute]
    the thing is that I can create and add a new entry in openLDAP from the console and it works.
    and here is how I proceed
    I create a text file: new.txt
    dn:cn=Hamido Saddo,ou=People,o=JNDITutorial,dc=img,dc=org
    cn:Hamido Saddo
    mail:[email protected]
    telephonenumber:3838393038703
    sn:hamdio
    objectclass:top
    objectclass:person
    objectclass:organizationalPerson
    objectclass:inetOrgPersonand i use this command to add the entry:
    ldapadd -D "cn=ldap_admin,O=JNDITutorial,dc=img,dc=org" -W -f new.txtand everything works, i get no errors.
    does anyone has a clue maybe???

    You must have an IMAP email account in order to add additional folders on the iPad mail app.
    If you go to your email account in the Mail app and look at the window where your inbox, trash folder and sent folder are - if there is an Edit button at the top of the window - tap that and then tap Add Mailbox at the bottom.
    If the Edit button is not there - you cannot create folders on the iPad. Your email account is not IMAP. Only IMAP email accounts can create folders on the iPad. Any folders that you would already have in an IMAP account would sync to the device as well.

  • New entries in Business Partner

    Hi all,
           We have new requirements(few standar BP and extended fields) for customer (BP) master data. I assume to create new customer we use BP transaction code.
           Can I manually added fields(which are extended new requirement to customer master) to tables like BUT000 etc.
          If suppose a new field is added to master table coresponding to this how can I added a field at BP transaction code that links the new entry in BP master table.
    I assume there is some simple way to link master table updation in entries to BP screen elements(stripping off standard fields which are not necessary and addition of extended new fields).
    Your support is appreciated.
    Thank you and regards,
    Eddie

    Hi Tiest,
         I have been working on it but I have encountered a problem like
    " Own system has not been entered correctly"
    I think this is related with simmilar problem as  the post with title "EEW customizing for system-wide object extension" (also I could not change the SYSTEM RELEVANCE aswell).
    As in the above posting it said we can not change BUPA object but it I want to enter field to BUT000 table how can I append?
    I have used EEWC and entered the parameters.
    System Type: <b>Local System</b>
    System Role :<b>Customizing System</b>
    Description : <b>CRMLS</b>  
    Logical system: <b>CRM40</b>                   
    Destination: <CRM Application Server>                   
    SAP R/3 Release : <i>For this i left blank</i>
    Namespace : <i>blank</i>
    Short Namespace : <i>Again blank</i> 
    Do I need to enter any other information at EEWC. your inputs are highly appreciated.
    Thank you in advance

  • Adding new currency to SAP R/3

    Hi,
    All Experts.
    I am adding to new currency RON to SAP R/3 all the DO's & DONT's  given in system. I am stuck up at one point that is Define translation ratios for currency translation. The process in SAP Note is given like this....
    Under the customizing point "Define translation ratios for currency translation" (Transaction OBBS), choose the menu point Selection criteria -- > By Contents.
    In the pop-up, choose the fields "From currency" and "To currency". In the next pop-up, enter the field contents ROL for both the "From currency" and the "To currency" as well as the Oper. "OR". Press the button "Choose".
    You should now have selected all ratios where either the "from" or the "to" currency is ROL. Now select all found entries using the menu point Edit -- > Selections -- > Select All.
    Copy the currency pairs to new keys replacing ROL with RON. In most cases, you will also want to set the ratios to 1 to 1.
    SAP Note way out is quite tedious and I am not getting it....
    OR I want to try the same as NEW ENTRIES option. which one to opt. Can I go to simply for New Entries ? Will it hamper system ?
    Expert guidance will be helpful on this.
    Regards,
    Sharvari Joshi.

    Hi,
    Murali.
    Thanks again for help & guidance !
    One more question.
    SAP Note it is saying that :-
    The New Romanian Leu will have two decimal places. NO entry should be made under the customizing point "Set decimal places for currencies". (Transaction OY04). So, this is by default, do not make the entry by copying the old currency.
    Means that I need to skip the step Set decimal places for currencies completely ! Further more if I mention the amount in RON system will consider the TWO decimal places automatically. Right ?
    E.g. :- RON 100.00 Is it like this ?
    Regards,
    Sharvari Joshi.

Maybe you are looking for

  • Not able to login into the database on oracle 10g on vista os

    Hi, I have install oracle 10g on vista machine. I am not able to log in to the database ia have tryied with scott/tiger, system/manager, sys/changeoninstall. can anyone please tell me what the default username password to 10g version for vista machin

  • I have just bought a new laptop, i am trying to sync my songs on my iphone to my itunes, but it says i can only sync with 1 itunes, any way round this?

    iv just bought a new laptop, i am trying to sync my songs on my iphone to my itunes, but it says it can only be sync with 1 itunes, any way around this?

  • Networking g5 with pc

    i have a new g5 that is connected to a cable modem. i'm wanting to setup a wireless network with it and my pc. i bought a linksys router and already have a wireless card for the pc. but after reading on here and various other sources, linksys isn't c

  • IFrames

    I have set up a page split into left and right cells; coded the right cell as an frame and then as an iFrame in order to insert a web photo gallery made in Photoshop CS3 but after reading 2 manuals and a linksys how to page...I'm still stuck. How do

  • Nokia E72 Wlan coonection

    hello i got the nokia E72, and i have a wlan connection at home, so it always connects automaticaly and downloads the emails, and the wlan connection symbol is always on in the bottom of the screen, how to turn this off? cos it will consume more batt