Profile class not getting created for new site for existing customer.

Hi,
I am creating a new site address for an existing customer using Customer Interface in oracle apps 11.5.10.2. The issue is the profile class is not getting assigned correctly at site level. It is getting defaulted with the profile class of the customer. Below is the data that I am inserting in RA_CUSTOMER_PROFILES_INT_ALL
INSERT INTO ra_customer_profiles_int_all
(orig_system_customer_ref
,orig_system_address_ref
,insert_update_flag
,customer_profile_class_name
,credit_hold
,org_id
,last_updated_by
,last_update_date
,created_by
,creation_date
,last_update_login
)VALUES
(x_orig_system_reference -- This is old customer reference as he already exists in the system
,x_address_ref -- This is a new address reference
,'I'
,rec_cust_det.customer_profile_class_name -- In the file I am giving it as 'ABC1' but it is getting defaulted with 'DEFAULT' which belongs to customer profile class at the header level
,'N'
,fnd_profile.value('org_id')
,fnd_global.user_id
,SYSDATE
,fnd_global.user_id
,SYSDATE
,fnd_global.login_id
Can anyone please help me how to resolve this issue. Hope you understood. Otherwise please let me know.
Regards
Dev

Please apply patch 4649221 to get this work.
Regards
Dev

Similar Messages

  • Extension folder is not getting created for firefox 4 in Mac OS

    in Mac OS 10.6, 10.5, extension folder is not getting created in the profile for the firefox 4.0. Where as in Firefox 3.6 when you launch the firefox first time, profile folder is created and extension folder is also part of that.

    That extensions folder will only be created if there are extensions found that need to be installed. If there are no extensions then Firefox doesn't create an empty extensions folder.<br />
    On Windows there is a lot of security software that installs extensions globally.
    * https://developer.mozilla.org/en/Installing_extensions
    * https://developer.mozilla.org/En/Developer_Guide/Customizing_Firefox
    * https://developer.mozilla.org/en/Adding_Extensions_using_the_Windows_Registry

  • Accounting doucment not get created for Credit Memo

    Hi
        When creating a cancellation doucment(vf11) for credit memo accounting document not get created.While I go for analysis then it is determining the G/L account.But not getting created the accounting doucment.
    When i select "Release to accounting" then it is giving a message like this:
    "Automatic clearing of billing document 951
    and canc. doc. 90000572 not poss."  as informatiion first
    and then later it is throwing an error message that "maintain correct number range"
    While for the same material or earlier cancellation happened and accounting doucment get created.
    Please help me out;How would i get this solved?
    Thanks in advance

    Hi,
    You may also check for Number Range - Maintainance & Assignment.
    T. Code: SNRO
    Table/ View: RV_BELEG
    Here, Mantain Number Range.
    To Assign,
    T. Code: SM30
    T.Code: Bill_Num (or select if different in your case)
    Assign No. range to your combination of Sales OrgDist.ChannelBill Type i.e. for Cancelled Billing Doc. Type
    To Maintain Number Range for Accounting Documents,
    T. Code: FBN1
    Best Regards,
    Amit

  • Inspection lot not getting create for 01 Insp type after Intransit

    Hi Qm Gurus,
    I have a Material 'A' which is producing in the plant IN05 and transferring to IN06 plant. We have Scheduling agreement PO for this. After Scheduling Agreement we are doing Transferring the Goods thro 351 GI Movement type. So now the parts will be there in transit.
    So now when I receive this goods in IN06 thro 101 MT, Insp lot is not getting create, it goes to Unrestricted. If I create a std PO for the same when I receive the goods thro 101, it is posting into Insp lot. But after 351 & if I do 101 material is not going into Inspection. Pls advise.
    I checked the Insp type 01 Active for IN06, Quality info record is fine, Quality plan also fine. Pls let me know whether i am missing something?

    Hi ,
    Please activate inspection type 08 stock transfer ..
    If this inspection type is active then during stock transfer lot gets generated.
    Also check QM active for this perticular movement in custamizing setting.
    Regards
    SANIL

  • When clicking on link in email, new tab NOT being created, but new window on existing tab - I want NEW TAB for each link clicked on...

    Up until today, whenever I clicked on link in email, a NEW TAB would be created. Now, when I click on link, a new WINDOW on existing tab is created - I WANT A NEW TAB, not a window...

    Hmmm, which mail site is this?
    One possibility is that you had a tab-related extension that automatically opened regular links in a new tab, and that the extension was disabled because it was incompatible with the latest version. To check for disabled add-ons, visit the Tools > Add-ons dialog.
    As a short term workaround: you probably know you can force a link to open in a new tab by holding Ctrl when you click the link, or by using the "middle" mouse button (often the scroll wheel). I find that quicker than right-clicking the link and choosing Open in new tab.

  • Spool list is not getting created for background job

    I am creating background job using JOB_OPEN and then submitting my z-report using submit statement and then closing job using JOB_CLOSE. for this job is getting creating in sm37 and also gets finished but it does not create spool list showing output.
    Any idea how to do this?
    Thanks in advance.

    DATA: lv_jobname TYPE tbtcjob-jobname,
            lv_jobcount TYPE tbtcjob-jobcount,
            lv_variant TYPE variant,
            wa_var_desc TYPE varid,
            wa_var_text TYPE varit,
            it_var_text TYPE TABLE OF varit,
            it_var_contents TYPE TABLE OF rsparams.
      REFRESH: it_var_contents, it_var_text.
      CLEAR: wa_var_desc, wa_var_text.
      CALL FUNCTION 'RS_REFRESH_FROM_SELECTOPTIONS'
        EXPORTING
          curr_report     = sy-cprog
        TABLES
          selection_table = it_var_contents
        EXCEPTIONS
          not_found       = 1
          no_report       = 2
          OTHERS          = 3.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
      CONCATENATE sy-datum sy-timlo INTO lv_variant.
      wa_var_desc-mandt       = sy-mandt.
      wa_var_desc-report      = sy-cprog.
      wa_var_desc-variant     = lv_variant.
      wa_var_desc-transport   = 'F'.
      wa_var_desc-environmnt  = 'B'.
      wa_var_desc-version     = '1'.
      wa_var_desc-protected   = 'X'.
      wa_var_text-mandt = sy-mandt.
      wa_var_text-langu = sy-langu.
      wa_var_text-report = sy-cprog.
      wa_var_text-variant = lv_variant.
      lv_jobname = lv_variant.
      CONCATENATE 'Batch Job Variant -'(006)
                  sy-uname INTO wa_var_text-vtext.
      APPEND wa_var_text TO it_var_text.
    Create the varaint for the back ground job.
      CALL FUNCTION 'RS_CREATE_VARIANT'
        EXPORTING
          curr_report               = sy-cprog
          curr_variant              = lv_variant
          vari_desc                 = wa_var_desc
        TABLES
          vari_contents             = it_var_contents
          vari_text                 = it_var_text
        EXCEPTIONS
          illegal_report_or_variant = 1
          illegal_variantname       = 2
          not_authorized            = 3
          not_executed              = 4
          report_not_existent       = 5
          report_not_supplied       = 6
          variant_exists            = 7
          variant_locked            = 8
          OTHERS                    = 9.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    Open the job.
      CALL FUNCTION 'JOB_OPEN'
        EXPORTING
          jobname          = lv_jobname
        IMPORTING
          jobcount         = lv_jobcount
        EXCEPTIONS
          cant_create_job  = 1
          invalid_job_data = 2
          jobname_missing  = 3
          OTHERS           = 4.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
               WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    submitt the job in background mode.
      CALL FUNCTION 'JOB_SUBMIT'
        EXPORTING
          authcknam               = sy-uname
          jobcount                = lv_jobcount
          jobname                 = lv_jobname
          report                  = sy-repid
          variant                 = lv_variant
        EXCEPTIONS
          bad_priparams           = 1
          bad_xpgflags            = 2
          invalid_jobdata         = 3
          jobname_missing         = 4
          job_notex               = 5
          job_submit_failed       = 6
          lock_failed             = 7
          program_missing         = 8
          prog_abap_and_extpg_set = 9
          OTHERS                  = 10.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
               WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    close the job.
      CALL FUNCTION 'JOB_CLOSE'
        EXPORTING
          jobcount             = lv_jobcount
          jobname              = lv_jobname
          strtimmed            = 'X'
        EXCEPTIONS
          cant_start_immediate = 1
          invalid_startdate    = 2
          jobname_missing      = 3
          job_close_failed     = 4
          job_nosteps          = 5
          job_notex            = 6
          lock_failed          = 7
          invalid_target       = 8
          OTHERS               = 9.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
               WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    Hope this will be helpful..

  • Transport not getting created for certain SPRO settings in Golden client

    Hi,
    Currently we are in the realization phase of the project ,we are in the process of configuring system in golden client.
    For some SPRO configurations ,the system is not prompting for the Transport request.
    Kindly let me know if anybody had gone through similar kind of issue.
    Regards,
    mmuser
    Edited by: mm Keyuser on Dec 30, 2009 5:34 AM

    Hi,
    Please check for the configurational table for which you are facing problem, its delivery class should be "C" under delivery & maintenance.
    You can get it checked by your ABAP team.
    hope this will help.
    Regards,
    AK

  • One Step GI - GR is not getting created for an STO

    Good Morning All,
    Actually we have made a setup that whenever we create a Goods Issue for STO type (UB - PO ) in the supplying plant we are creating the GR in the background . WE have made the configuration in SAP R/3 version 4.6c with One STEP Movment, that is when we create the GI (351 ) movment then GR (101) should be created automatically. Actually its not working properly. And sometimes it creates the GR with the USer as WF-BATCH.
    Let me know where exactly I need to check for the failure.
    In such cases if there is error in the background process, means, is there any transaction where it shwos the authorization or other failures happened to the system.
    Advance thanks....
    regards,
    Sabari Prabhu.

    Dear Venkadesh,
       Which Batch job should i need to check for this.Because I am not seeing any batch job relatred to that.
    Regards,
    Sabari Prabhu.

  • Delivery not getting created for Stock Transfer Purchase order

    Hi,
    My user having one issue with stock transfer order. User is not able to generate the delivery for the particular material against stock transfer PO. Here checking rule is not maintained.Kindly advice.

    Hi
    Please, see SAP Note 498143 - FAQ: Stock transfer with delivery in purchasing.
    I hope this helps you
    Regards
    Eduardo

  • Required attribute not getting created

    Ok, here is a wierd one.
    I have some custom ID management code (an SSO plug-in cert mapper and a WAR file I deploy to OC4J_SECURITY). The application provides a registration process that creates user entries and RADs for Oracle Forms app users. Everything works fine, except that I have found that my RAD creation does not get the orclresourceviewers attribute created automatically.
    This has worked in my IM development farm. The attribute would be created automatically. It was difficult to figure out this was the reason my Forms App Server would fail with the following exception.
    oracle.ldap.util.AccessDeniedException: General Error when performing search: getExtendedProperties [LDAP: error code 50 - Insufficient Access Rights]
    I have gone through the motions of now preparing to query the OID Forms ID so that I can fill in this attribute in my RAD creation class. I still would like to know why this attribute is not getting created for me anymore.
    Any ideas?
    Oh and BTW, it did not help that orclresourceviewers is not documented anywhere I could find (not OID Admin and not Forms Deployment Guide)
    regards,
    tt

    Hi Sandeep.
    Yes, my application entities that I set up to manage a specific realm are used to create all RADs in a particular realm. As part of the setup for this I add these application entitites to the following three realms:
    cn=OracleDASAdminGroup,cn=Groups,cn=OracleContext,dc=<realm_name>,dc=<abc>,dc=<com>
    cn=RealmAdministrators,cn=Groups,cn=OracleContext,dc=<realm_name>,dc=<abc>,dc=<com>
    cn=UserProxyPrivilege,cn=Groups,cn=OracleContext,dc=<realm_name>,dc=<abc>,dc=<com>
    I add to these so that the app entity could create, modify, delete and proxy to any realm user. I had to create an ACI to allow my entities to search and see the Forms Server application entity entry in order to populate orclresourceviewers.
    I just wish I new why orclresourceviewers does not get created automatically. Of course, if I create the RAD in DAS or using the Oracle DynamicResourceCreate option, it is added. It has added it in my own RAD creation code at one point and it stopped for some reason.
    I had to add an LDAP search to my RAD creation code with the possibility of multiple Forms Server entries (Logical Application Group) just in case. Much ado for something that maybe should not have been necessary.
    regards,
    tt

  • ERMS : Email work items not getting created

    Hi Forum
    In my test system (CRM 2007), inbound mails were properly coming in and getting distributed to agent's inbox. But after the server restart, I realised that the work items for inbound mails stopped getting created due to which mails are not reaching agent's inbox.
    Mails are visible in SOIN but their associated Work items are not there in SWI1.
    I have checked almost all the settings like Email Distribution (SO28), CRM_ERMS_WF_CUST (Event lining is in place and is active), swu0 (Event simulation is working).... but still not sure why work items are not getting created for inbound mails.
    Any thoughts ? Help will be deeply appreciated.
    Regards
    Vishal Mani

    Thanks Bruno for your time to reply !
    I checked this transaction and in overview there are 19 events with errors. But apart from that everything is green.
    I checked the Linkages with Error tab and realised that the events with errors belong to object type BUS1006.
    In Activation tab --> Linkages --> Object type (ERMSSUPRT2) --> Linkage is activated.
    Infact that is the first thing, I checked when work items were not getting created.
    So no clue from here too.
    Regards
    Vishal Mani

  • We are not getting email for any of the two new profiles in Production environment

    We are not getting email for any of the two new profiles.
    The new rules for sending e-mail work when using the initial profile.
    Only works for F9 and choose manually the profile is being sent.
    But siebel writes the log of both the \ BIN \ sent as if it had sent.
    operation:
    Standards (Policies) were created in the Activities (S_EVT_ACT) and Contacts table (S_CONTACT). When Standards (Policies) are reached trigger actions (Actions). These actions are linked to sending emails.

    The SMTP Adapter don't just "through away" messages. If your Tracked Service Instances shows that a message was sent through the Port, I am pretty sure that a mail was indeed sent. 
    -Are you using Static- or Dynamic Port?
    Can you try to set the Send Port in "Stopped" state, and then send a message to it. Examine the message suspended in BizTalk, and if everything looks ok, then start the Port again and check that the message has disappeared from both suspended and running
    instances in the Group Hub.
    If so, quickly check the mail box, make sure that no spam-filters etc. are messing up your test.
    Morten la Cour

  • Site not getting created in SharePoint 2013.

    Hi,
    I am trying to create site in 2013. while creating site, it is taking long time and after some time tried refresh the page, it shows site created. But when i click on created site, it shows empty page. i am not getting errors or event logs. what will be
    the error. Could some one please help me in creating site with working fine.
    Thanks,
    Badri.
    Badri

    Hi,
    According to your post, my understanding is that you get a blank page when you create a new site.
    To narrow down the issue scope, I recommend that you can try to test the following things.
      1.  What’s the type of this site you created in this site collectionCreate a new different types site in this site collections to check if this issue is occurred on the only site collection in this web application.
        Create a new site collection in another web application to check if this issue is occurred on the only web application.
        Create a new web application, create a new site collection in this new web application to test if it works.
        If you are then the odds are that something went wrong during the provisioning of the original web application.
        And, you can add your URL for this site to “trusted sites” in IE.
    http://sharepoint.stackexchange.com/questions/60957/external-access-gives-a-blank-home-page
      2.  Do you use the administrator account to login the site?
        You can use the administrator account to login the site, then check the permission of your account.
        Maybe your account has no permission to access the site, you can assign it Full Control permission, then check whether it works.
    http://stackoverflow.com/questions/4742175/new-site-collection-is-empty-sharepoint-2010
      3.  Go to the IIS and select the respective web application. Here, I have selected the web application to which the site collection belongs to.
        Double click the Authentication icon.
        Set the status of ‘Basic Authentication’ from “Disabled” to “Enabled”.
    http://adicodes.com/fix-error-empty-pages-when-new-site-collection-is-created/
    http://sensoft2000-sharepoint.blogspot.com/2010/06/getting-blank-page-instead-of-central.html
      4.  Control Panel > Programs and Features > Turn Windows features on or off >Internet Information Services > World Wide Web Services > Security >tick ‘Windows Authentication’, do an IISReset for good measure.
        To be more specific, check the authentication settings for SharePoint Central Administration website in IIS. Make sure that you have Windows Authentication enabled and Anonymous Authentication disabled.
    http://blog.vinewave.com/2012/01/04/solved-sharepoint-returning-a-blank-page/
    http://blogs.objectsharp.com/post/2010/01/04/Blank-page-instead-of-the-SharePoint-Central-Administration-site.aspx
      5.  Run the following power shell command to disable the LoopbackCheck.
    New-ItemProperty HKLM:\System\CurrentControlSet\Control\Lsa -Name "DisableLoopbackCheck" -value "1" -PropertyType dword
        You may have to restart the servers and will have run this from all of your SharePoint servers.
        You can also navigate to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa in registry and create the dword32 for DisableLoopbackCheck, modify the value to 1.
    https://social.technet.microsoft.com/Forums/en-US/7d311288-e14d-4fa8-be02-da524cb4c0ea/sharepoint-site-returns-a-blank-page?forum=sharepointadmin
    If the issue persists, please check the ULS log file to find more information about this issue.
    For SharePoint 2013, by default, ULS log is at C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\LOGS.
    Best Regards,
    Yumi Fu

  • I bought a new iMac.  iWeb and all folders migrated over, no problem, but I cannot bring up my website - it only seems to allow for creating a new site.

    I bought a new iMac.  iWeb and all its folders migrated over, no problem, but I cannot bring up my website - it only seems to allow for creating a new site.

    You need the 'Domain' file in which iWeb keeps its data. This lives by default in (user)/Library/Application Support/iWeb. You need to locate it on the old machine and copy it to the same position in the new machine. Note that it is the Library folder in your Home folder, not the one at root level.
    This folder is hidden on Lion and above; to access it, in the Finder go to the ‘Go’ menu and hold down the Option (Alt) key; the Library folder will appear as a choice. In Mavericks you can make it permanently visible - open your Home Folder the from the Finder's View menu, choose show View Options and check Show User Library.

  • Do not see image and content folders after creating a new site

    Why didn't I see the image folder, content folder......aftter I create a new site?

    DW does not create any folders for you, except those used by DW code (Templates and SpryAssets for example).
    It's up to you to organize your site the way that makes the most sense to you by adding in folders like images, content, pages, etc.
    Just don't move files out of any of the automatically generated folders that DW does give you, that can break things (especially Template .dwt files).

Maybe you are looking for

  • Iphone 4S stuck on ringer

    Hey, My iphone 4S will not play from the external speaker from any app, music, you tube etc.  The only time I get sound externally is when it rings or voice memo playback! I can adjust ringer volume when I have an incoming call or during the call, bu

  • Reporting on BEX Query in WEBI 4.0

    Hi , I am new to 4.0 we are created webi reports based on the Bex queries with out universe.. can any one share me the documents or links  webi Bex queries ,what is possibility's and customization in the webi level. Thanking you Advance Regards, G

  • Change Row - to Column

    Hi all, Oracle table A with fields companycode,Locid,suppid,supptyp .100 records for each company,locid combination, but in VSAM file we have to load into a single record with 100 occurances in table Companycode1,locid1,supp1,supptyp1 Companycode1,lo

  • Problem connecting my webservice to mysql database

    Hi, I am trying to connect a webservice to a mysql database. I am using sun application server 8.1 and Mysql 4.1. I have been using the application servers examples to achieve my goals thus far. I have made the following progress. - I have got a simp

  • How to load images in FLEX datagrid using Actionscript

    Hello friends, I need a small help from you. i am working in flex and in flash builder 4. Now my requirement was, i want to display images inside datagrid. I found a solution in mxml when searching in net. But i need a solution in actionscript. Can a