New address creation for already existing customer in Oracle

Hi,
We are working on customer conversion and loading all the data into customer interface tables so that we can run the customer interface to move the data into oracle tables.
We need to create another address as per client’s requirement to already existing customer in oracle which has active primary bill_to address.
Can we do this by using customer interface tables or use the API’s for it.
Any pointers regarding this will be highly appreciated.
Thank and Regards,
Rekha Palagani.

i have heared form someone that i should copy some text (from files) or some files which resides in bin folder (i don't know the exact path) in the sql console to access existing tables. is that ture?Not sure what that means... to access existing tables, or to create new ones you have to use Sql commands (or some graphic stuff).
What about reading some documentation ?
System user is a DBA, and can possibly read any tables, but most probably is not the owner of emp table. To know it you can do
SQL> select owner from dba_tables where table_name='EMP';
then connect to that user, or, as system user, do
SQL> select * from <owner>.emp;

Similar Messages

  • Legacy data transfer for new depreciation area for already existing assets

    Hi all,
    I am doing legacy data transfer for New deprecaition area for already existing assets through AS92.
    I like to give Ordinay depreciation posted amount  for the current FY for these assets in AS92, but i find this field is not editable inAS92.
    Please guide me to upload the Posted deprecaiton amount (for current FY) for these assets. I have assets both which are acquired in Last FY year and also this FY year.
    Regards,
    Srinivas

    HI,
    I have to migrate Posted dpereciation for new depreciation for nearly 3000 assets, In transaction 147, where i need give Acquituion value aslo, please note these are not new assets, these are prior year assets wiht opeing balances. If we use 147 system will take it is current acquition.
    Please note my transter date is 28.02.2010, I have already run AFAB for this company cdoe Feb 2010 for other depreciation areas.
    Now i am trying to update Opening APC Cost and Opening Accumulated deprecation for these assets and also posted depreciation for this FY.
    Where in AS92, i am able to update Opeing APC Cost and Opeing  Acc Dep succsfully for new dep area for already existingassets, bu Posted deprecation field is not editable.
    Please guide me how to update posted deprecation for new deprecaition area  in AS92 or some other way for already existing assets.
    REgards,
    Srinivas

  • Adding new custom field in already existing custom tab for MM01

    Hello Guru,
    I have a requirement that add a custom field in already existing custom view of MM01. I did the following steps :
    1. I have cerated a new field in MARA using APPEND structure.
    2. I have found the function group(Y_FE_MARA) that already there other subscreens, so that I have added another subscreen in that function group and created a field from MARA in the screen.
    3. in SPRO went for the path Logistics General->Material Master->Configuring the Material->Define Structure of Data screens for Each Screen sequence
    In the 3rd step, I have choosen already existing screen sequence(Y1) and went for Data Screens and choosen for Custom tab and double click on subscreens and then I have added the program as SAPLY_FE_MARA and subscreen number(011) and saved it.
    After all the above steps, I have run MM02/MM03 then the field is not getting displayed in the screen of custom view.
    Did I miss any steps here? Please suggest me if I did something wrong.
    Thanks and Regards,
    Muralikrishna Peravali

    Hi Raymond,
    Thank you for the reply. As per the note some one already implemented the Screen Enhancement with 2 custom views. I need to add the field in any one of existing custom view. So for this I have created a Subscreen in copied function group of MGD1(Y_FE_MARA). But in the function group already 10 Subscreens were created. Is this is the problem? or else copy the FG MGD1 into another FG and create the subscreen will be feasible to my scenario?
    Please suggest me.
    Thanks and Regards,
    Muralikrishna Peravali

  • How Add new Bill to location for an existing Customer

    Hi all :
    Would you please let me know where can add a new Bill to location for an existing customer ?
    OM Superuser > Order, Return > Order Organizer> New Sales Order
    Thank you

    You can add bill to location as follows
    Order Management Super User> Customer > Standard >Find your customer
    Add a new address if necessary
    And then in Business Purpose area, enter BILL TO as the usage.
    Hope this answers your question
    Sandeep Gandhi

  • How do i add a rescue email address to an already existing apple id? The only option it gives me, under the manage my apple id category, is an alternate email. I am trying to make my alternate email address my rescue email address.

    How do i add a rescue email address to an already existing apple id? The only option it gives me, under the manage my apple id category, is an alternate email. I am trying to make my alternate email address my rescue email address. I am new to this community thing.

    Note that the rescue email address is not on the "Name, ID and Email Address" page -- you need to click on "Password and Security" on the left side. Even after you do that, it may or may not be available. As noted in the following it is only available if you have 3 security questions and are not using 2-step verification: Manage your Apple ID primary, rescue, alternate, and notification email addresses

  • Adding a new item to an already existing BOM

    Hi,
        I am having a problem adding a new item to an already existing parent BOM.I excute the following code (as per the SDK).
        Dim vProdTree As SAPbobsCOM.ProductTrees
        Set vProdTree = vCmp.GetBusinessObject(oProductTrees)
        'Set Values to the fields
        vProdTree.TreeCode = "Item1"
        vProdTree.TreeType = iProductionTree
        'Set Values to the Assembly parts of the
        'First Assembly
        vProdTree.Items.ItemCode = Excel.Row(Cell1)
        vProdTree.Items.Price = 20
        vProdTree.Items.Quantity = 1
        vProdTree.Items.Currency = "Eur"
        'Adding the Product Tree
        RetVal = vProdTree.Add
        If (RetVal <> 0) Then
            vCmp.GetLastError ErrCode, ErrMsg
            MsgBox ErrCode & " " & ErrMsg
        End If
    If there is no parent BOM production tree with keycode Item1, then when the above code is run for the first time, it works.The issue occurs when I run change my excel, Cell1 to a different value and run the program again. The error states that the code already exists, which is correct, but does not  append the item to the existing BOM.
    I have tried vProdTree.Update, but this line overwrites the original child item in the BOM, rather than appending a new item, which is what I want it to do.
    Any  help is appreciated.
    - Adrian.V

    Your issue here is how the "Items" (which is actually pointing to ProductTree_Lines object) works. It is a List of items, and when you get the object is always pointing at the first item in the list.
    So for example, to add a BOM with two items you would need to set the details of the first Item and then add a line using vProdTree.Items.Add() before setting the values for that item.
    e.g.:
    Dim vProdTree As SAPbobsCOM.ProductTrees
    Set vProdTree = vCmp.GetBusinessObject(oProductTrees)
    'Set Values to the fields
    vProdTree.TreeCode = "Item1"
    vProdTree.TreeType = iProductionTree
    'Set Values to the Assembly parts of the
    'First Assembly
    vProdTree.Items.ItemCode = Excel.Row(Cell1)
    vProdTree.Items.Price = 20
    vProdTree.Items.Quantity = 1
    vProdTree.Items.Currency = "Eur"
    'Add a second item to the BOM
    vProdTree.Items.Add
    vProdTree.Items.ItemCode = Excel.Row(Cell2)
    vProdTree.Items.Price = 50
    vProdTree.Items.Quantity = 1
    vProdTree.Items.Currency = "Eur"
    'Adding the Product Tree
    RetVal = vProdTree.Add
    If (RetVal 0) Then
    vCmp.GetLastError ErrCode, ErrMsg
    MsgBox ErrCode & " " & ErrMsg
    End If
    To do what you want to do, which is get the BOM and add a new item to it, you will need to do this:
    Dim vProdTree As SAPbobsCOM.ProductTrees
    Set vProdTree = vCmp.GetBusinessObject(oProductTrees)
    'Get your BOM by key
    vProdTree.GetByKey("Item1")
    'Add a second item to the BOM
    'First Item exists so you need to add a new row
    vProdTree.Items.Add
    vProdTree.Items.ItemCode = Excel.Row(Cell1)
    vProdTree.Items.Price = 50
    vProdTree.Items.Quantity = 1
    vProdTree.Items.Currency = "Eur"
    'Update the Product Tree
    RetVal = vProdTree.Update
    If (RetVal 0) Then
    vCmp.GetLastError ErrCode, ErrMsg
    MsgBox ErrCode & " " & ErrMsg
    End If
    Method one allows you to add multiple lines as you add the object (which makes more sense), method 2 allows you to get the object after it has been added and add multiple lines to it. This is similar to how the Document_Lines object works.

  • Is it possible to change out of the box Callout content for already existing library using some javascript API ?

    Is it possible to change out of the box Callout content (change DOM elements) for already existing library using some javascript API?
     API ?

    Hi,
    We can use CSS and jQuery to achieve it.
    Please add the following code into the Content Editor Web Part.
    <style type="text/css">
    .js-callout-content{
    display:none;
    .js-callout-mainElement span{
    display:none;
    .js-callout-mainElement{
    border-width:0px;
    </style>
    <script src="http://code.jquery.com/jquery-1.10.2.min.js" type="text/javascript"></script>
    <script type="text/javascript">
    $(function () {
    $("a[title='Open Menu']").click(function(){
    setTimeout(function(){
    $(".js-callout-body .js-callout-bodySection").eq(0).html("<span>Test</span>");
    $(".js-callout-mainElement span").show();
    $(".js-callout-content").show();
    $(".js-callout-mainElement").css("border-width","1px");
    },1000);
    </script>
    Result:
    Best Regards
    Dennis Guo
    TechNet Community Support

  • Find out Account Group for already created customer

    Hi,
    How do i find out Account Group for already created customer?
    Is there any Tcode to find that?
    Thanks in advance.
    Swetha

    Hii
    Please check it in XD03 got to sales area tab under billing document tab u will find the account assignment group.

  • Hi Guys, best process is upgrade or a fresh install for already existing solution manager?

    Hi Guys, best process is upgrade or a fresh install for already existing solution manager to SAP 7.1?

    Hi
    Have you checked below link or presentation..it might help you to get more relevant inputs for decision
    Upgrade to SAP Solution Manager 7.1
    also incase you have charm or service desk check my blog as well.
    Upgrade Roadmap - Solution Manager 7.0 to 7.1 with Service Desk/ChaRM
    Hope this helps
    Thanks
    Prakhar

  • Create new depreciation class for the existing asset

    Dear Experts,
    Please explain step by step:
    1. How to create a new depreciation class for the existing asset
    2. How to make a asset transfer to the new asset in the new asset class?
    Thank you in advance

    Hi,
    The pre-requsit of creating a new assets clause :-
    1. Co. code assigned to Chart of Dep.
    2. Dep areas have been defined
    3. GL account no. is not more than 8 digit.
    The transfer of an assets within the same co code can be done thru T.code ABUMN.
    Award if helpful
    Sunil

  • New Address creation on Shipping Page

    Hey All,
    I have a .net user control running on the shipping.aspx page that retrieves the selected address from the drop down list or radio button of addresses in the users account.
    This works great for existing addresses and I can save the info.
    How can my control know what the address ID is when the user adds a new address? I get the order.GetShippingId it always has the value of the last selected address when adding a new address or 0 which is no good.
    Any suggestions on how I can figure out what address ID has been assigned to the new address that was created?

    Hi Curtis,
    Since my previous suggestions haven't panned out, I guess you can try getting it form the account object or go straight to the DB.
    NPBasePage bp = (NPBasePage)Page;
    NPAccount a = new NPAccount(bp.AccountID);
    // get the last address in the collection
    NPAddress address = null;
    if (a.Addresses.Count > 0){
       address = ((NPAddress)a.Addresses[a.Addresses.Count -1]);
    if (address != null){
        int addressid = address.AddressID;
    Note that addresses are not sorted in the NPAddress.Addresses query, so it is possible that SQL Server will not return them in order of AddressID.  If you are worried about this, you can check the ids to make sure you've got the highest.  That will be the one that was just created.
    or you could go straight to the DB:
    NPBasePage bp = (NPBasePage)Page;
    StringBuilder sb = new StringBuilder();
    sb.Append("SELECT TOP 1 AddressID ");
    sb.Append("FROM UsersAccountAddress ");
    sb.Append("WHERE AccountID = @accountid ");
    sb.Append("ORDER BY AddressID DESC");
    DataParameters dp = new DataParameters(1);
    dp.Add(NPDataType.NPInt, "@accountid", bp.AccountID);
    object o = DataFunctions.ExecuteScalar(sb.ToString(), bp.Parameters, bp.ConnectionString);
    if (o != null){
      int addressID = Convert.ToInt32(o);

  • How to inlcude POWL in Page builder as link list for already existing powl link list

    Hi All,
    I got a requirement to display POWL query as Link List in a Page Builder. But I have to add this POWL Link List to already existing set of Link Lists.
    The below are already existing ones. I want to add my custom POWL to the below list.
    Can any one please help me to achieve this requirement.
    Thanks in Advance.
    Thanks,
    Srikanth Pullela

    Hi Srikanth,
    I not understood properly ur requirement.
    You  want to add a custom POWL query in an existing POWL application?
    Go to POWL_COCKPIT, Select your POWL_APPLICATION.
    Create POWL query.
    And While Registering the Query just mention the category in whcih you want it to display.

  • Creating a new address list for Exchange Online (Office 365) by two parameters

    Good day!
    I need to create two new address list in Exchange Online 2013 (Office 365) that users will choose the two parameters.
    Address sheet1: No staff
    Address Sheet2: Staff
    Parameters address sheet not staff:
    Parameter 1: Company
    It must match the value - MyCompany
    Parameter 2: job title
    it must be different from the value - Staff
    Parameters address sheet Staff:
    Parameter 1: Company
    It must match the value - MyCompany
    Parameter 2: job title
    It must match the value - Staff
    Problems:
    1) Is it possible to filter user mailboxes on the parameter of discrepancy?
    2) Can not find the parameter values ​​for the script field job title
    https://technet.microsoft.com/ru-ru/library/aa996912%28v=exchg.150%29.aspx
    https://technet.microsoft.com/en-us/library/bb738157%28v=exchg.150%29.aspx
    While on the side of 365 in the user properties such parameter is:
    http://joxi.ru/MAj0Jj7hGyDbme
    Company option too.

    I got to build a team that I need (describes the necessary conditions)
    and successfully held in PS 4.0 after connecting to the office 365:
    1) Set-ExecutionPolicy unrestricted
    2) $ UserCredential = Get-Credential
    (Data Entry Administrator 365)
    3) $ Session = New-PSSession -ConfigurationName
    Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $ UserCredential -Authentication Basic -AllowRedirection
    Import-PSSession $ Session
    4)
    PS C:\Windows\system32> New-AddressList -Name 'TEST1234' -RecipientFilter {((RecipientType -eq 'UserMailbox') -and ((Com
    pany -eq 'Company1') -and (Title -ne 'Student')))}
    Name                      DisplayName               RecipientFilter
    TEST1234                  TEST1234                  ((RecipientType -eq 'UserMailbox')
    -and (((Company -eq 'Company1...
    As a result, the new address list TEST1234 immediately appears. (When creating a new letter in the menu "To"), but on the inside
    it is empty (although there is 1 user which is fully consistent with those described in the filter conditions.).
    = (
    Tried a simple version:
    Office365
    не отображается в адресном списке.">The same thing - the only user with such parameters in AD -> Office365 is not displayed in the address list.
    (After running for a list TEST123 more than two days)
    Tell me what could be the problem?

  • Already existing tables in oracle 10g problem

    Hi, i am new to oracle and just installed oracle 10g, my porblem is that when i ran the query i got an error.
    SQL> select *
    2 from emp;
    from emp
    ERROR at line 2:
    ORA-00942: table or view does not exist
    As emp table already exist in database but it does not show result. please help me. Thanks.

    i have heared form someone that i should copy some text (from files) or some files which resides in bin folder (i don't know the exact path) in the sql console to access existing tables. is that ture?Not sure what that means... to access existing tables, or to create new ones you have to use Sql commands (or some graphic stuff).
    What about reading some documentation ?
    System user is a DBA, and can possibly read any tables, but most probably is not the owner of emp table. To know it you can do
    SQL> select owner from dba_tables where table_name='EMP';
    then connect to that user, or, as system user, do
    SQL> select * from <owner>.emp;

  • How do I add a new song to an already existing playlist on the new iso7 for iPhone 5?

    I tried to add a new song and I go to playlist, edit and go to song to add and it won't. So confused!

    This should come handy:
    http://docs.info.apple.com/article.html?artnum=107240

Maybe you are looking for

  • Problem with connecting and syncing   (quicktime.qts)

    Hi, I have a problem with connecting and syncing my Iphone to itunes. iphone alone on PC -> uploading files (fotos) is possible itunes starts normaly, if iphone is not conected. if i connect iphone after starting itunes, or if i start itunes after co

  • HP Scan utility no longer works with Mountain Lion

    Updated from 10.6.8 to 10.8.  HP Scan software utility no longer boots, yielding an error message warning of incompatibility.  I run Software Update over and over again, but HP Scan still did not boot. I ran HP Uninstaller, but it did not remove the

  • Can i install windows 7 64bit on my mac

    I have 16gb of Ram installed on my iMac and Windows 7 installed amd it is only using 2.23gb of it, and it is very anoying. I need to know if I can install 64 bit eddition Windows 7 on it before I go out and spend the money on it.

  • Dbconsole start  failed on Oracle 11G

    After installing Oracle 11G and creating a new database, I have created new db console reporsitory, with the commands: set ORACLE_SID set ORACLE_HOME set SYS_PWD set PORT emca -repos create -silent -SID $ORACLE_SID -ORACLE_HOME $ORACLE_HOME -SYS_PWD

  • Query filter with amounts does not alway work

    I have several customers with the same problem. They create a query in Webi containing some simple objects. In the filter pane they have for eksample amounts less than  -2000 This should give a report with rows where the amount is less than -2000. Bu