Bulk import error - Missing required attribute ‘fullname’

Folks,
I am having trouble trying to bulk import some users.
I have the following file for import (cut down from what I really want to import):
command,user,waveset.resources,password.password,password.confirmpassword,global.firstname,global.lastname,global.fullname
Create,”user1”,”myLDAPresourcename”,”passwd”,”passwd”,”myfirstname1”,”mysurname1”,” myfirstname1 mysurname1”This works using “Accounts->Launch Bulk Actions” with Action set to “From Action List” and everything else on that page left at the default value. The correct data appears in IDM and the LDAP resource.
Now if I try to import the following file, in which the user does not have a first name, I get in to trouble:
command,user,waveset.resources,password.password,password.confirmpassword,global.firstname,global.lastname,global.fullname
Create,”user2”,”myldapresourcename”,”passwd”,”passwd”,””,”mysurname2”,”mysurname2”
The error message is:
com.waveset.Util.WaveSetException: An error occurred adding user ‘uid=user2,…..’ to resource “myLDAPresourcename”.
com.waveset.util.WavesetException:  Missing required attribute ‘fullname’Clearly the import file contains a column for ‘fullname’ (column 8) and a value for ‘fullname’ in the only row of data “mysurname2”. As far as I am concerned it is perfectly valid for a user not to have a ‘firstname’; but they must have a ‘fullname’.
I have tried using an import file without a value for ‘fullname’, but with a ‘firstname’ and ‘lastname’ like this
command,user,waveset.resources,password.password,password.confirmpassword,global.firstname,global.lastname,global.fullname
Create,”user3”,”myLDAPresourcename”,”passwd”,”passwd”,”myfirstname3”,”mysurname3”,””This works. The correct data appears in IDM and the LDAP resource and IDM has generated a ‘fullname’ value of “{Firstname} {Surname}”. Trying to leave out the ‘firstname’ and the ‘fullname’ gives the same error as above.
The configuration of my resource (in summary) is
objectclasses:
     top
     person
     inetOrgPerson
Account Attributes:
     accounted     -> uid               [required]
     password     -> userPassword
     firstname     -> givenname
     lastname     -> sn               [required]
     objectClass     -> objectClass
     fullname     -> cn               [required]
As an experiment I have tried reconfiguring the resource so that ‘fullname’ is not marked as required.
Importing user1 and user3 still works and still creates the correct data in IDM and the LDAP resource.
Importing user2 now gives a different error:
com.waveset.Util.WaveSetException: An error occurred adding user ‘uid=user2,…..’ to resource “myLDAPresourcename”.
javax.naming.directory.SchemaViolationException: [LDAP: error code 65 – Object Class Violation]I don’t understand why, during the import of a user without a ‘firstname’ IDM will not generate a ‘fullname’ or use the supplied ‘fullname’.
Can anyone help?
Regards,
Gavin

After further testing it turned out that I couldn't create a user without a firstname from the IDM GUI and this in turn was because of the way fullname was generated by the user form.
I've got the user form changed and now user creation (from the GUI and via bulk import) is working as hoped.

Similar Messages

  • OER 11.1.1.7 - Asset Navigator doesn't open with an Error - Missing Required permissions attribute in main jar

    Hi,
    I have installed OER-11g version 11.1.1.7 and am successfuly able to open Asset Editor , ImpExp utility and also could harvest SOA and OSB components.
    Issue 1:
    However while trying to open the Navigator of the harvested components in OER console, a new window opens with two sections ( top and bottom). The top one which is a diagram view doesn't open with an error - Missing required permissions attribute in main jar: http://localhost:7101/oer-web/applets/components.aler-thinkmapclient-11.1.1.7.0.jar.
    Please find the screenshot below.
    Issue #2 : While trying to browse for the Assets from OER console. The below error is seen ( missing permissions for components.jexplorer-11.1.1.7.0.jar)
    Could someone direct me on how to solve this issue. Appreciate your help !
    Thanks and regards,
    Sridhar.

    It works for me after I did a small tweak by as mine is a demo install.
    Idea - is to make an security exception for the OER url in Java control console
    Steps to do that :
    1.Go to the control panel and uninstall the 64 bit version of Java
    Open Programs and Features and select the 64 bit version of Java and select Uninstall.
    2.Open up the Java Control Panel
    Found as an option in the standard windows control panel
    3.Check the version by clicking on the About Tab
    If this is not what you expected you can go to java.com and download the latest version.
    4.Click on the Security Tab in the Java Control Panel
    5.Click on the Edit Site List button in the lower RH corner of the control panel
    6.Add your URL to be allowed
    Enter the full path that you use to access this such as https://myequallogics.com or the IP address if that is how you access it (as in http://192.168.0.100 - Https is recommended by Oracle.) Once complete hit OK. You should now see the exception on the security page.
    7.Close out of the control panel.
    8.You can now acess your site through the browser window.
    Thanks to Java error: Missing required Permissions manifest attribute in main jar - Spiceworks for letting me know this.
    regards,
    Sridhar

  • Custom Tag is missing required attribute property

    Hello,
    Here is my struts config file source;
    <global-forwards>
              <forward name="mainpage" path="/index.jsp">
              </forward>
              <forward name="CustomerDetailsForward" path="/GoToCustomerPage.do">
              </forward>
         </global-forwards>
         <!-- Action Mappings -->
         <action-mappings>
              <action path="/SubmitCustomerForm" type="action.SubmitCustomerForm" name="CustomerForm" scope="request" validate="true" input="/CustomerDetails.jsp">
                   <forward name="success" path="/Success.jsp">
                   </forward>
                   <forward name="failure" path="/Failure.jsp">
                   </forward>
              </action>
              <action path="/GoToCustomerPage" type="org.apache.struts.actions.ForwardAction" parameter="/CustomerDetails.jsp">
              </action>
         </action-mappings>
    And my index.jsp source;
    <html:html>
    <head>
    <html:base/>
    </head>
    <body>
    <html:button></html:button>
    <html:link forward="CustomerDetailsForward">Go To Customer Form </html:link>
    </body>
    </html:html>
    And here is the error;
    Error Message:JSPG0227E: Exception caught while translating /index.jsp: /index.jsp(13,1) --> JSPG0006E: Custom Tag is missing required attribute property
    Root Cause:com.ibm.ws.jsp.translator.JspTranslationException: JSPG0227E: Exception caught while translating /index.jsp: /index.jsp(13,1) --> JSPG0006E: Custom Tag is missing required attribute property     at com.ibm.ws.jsp.translator.visitor.validator.ValidateVisitor.visitCustomTagStart(ValidateVisitor.java:304)     at com.ibm.ws.jsp.translator.visitor.JspVisitor.processJspElement(JspVisitor.java:267)     at com.ibm.ws.jsp.translator.visitor.JspVisitor.processChildren(JspVisitor.java:309)     at com.ibm.ws.jsp.translator.visitor.JspVisitor.processJspElement(JspVisitor.java:268)     at com.ibm.ws.jsp.translator.visitor.JspVisitor.processChildren(JspVisitor.java:309)     at com.ibm.ws.jsp.translator.visitor.JspVisitor.processJspElement(JspVisitor.java:139)     at com.ibm.ws.jsp.translator.visitor.JspVisitor.visit(JspVisitor.java:121)     at com.ibm.ws.jsp.translator.JspTranslator.processVisitors(JspTranslator.java:121)     at com.ibm.ws.jsp.translator.utils.JspTranslatorUtil.translateJsp(JspTranslatorUtil.java:181)     at com.ibm.ws.jsp.translator.utils.JspTranslatorUtil.translateJspAndCompile(JspTranslatorUtil.java:83)     at com.ibm.ws.jsp.webcontainerext.AbstractJSPExtensionServletWrapper.translateJsp(AbstractJSPExtensionServletWrapper.java:349)     at com.ibm.ws.jsp.webcontainerext.AbstractJSPExtensionServletWrapper._checkForTranslation(AbstractJSPExtensionServletWrapper.java:317)     at com.ibm.ws.jsp.webcontainerext.AbstractJSPExtensionServletWrapper.checkForTranslation(AbstractJSPExtensionServletWrapper.java:226)     at com.ibm.ws.jsp.webcontainerext.AbstractJSPExtensionServletWrapper.handleRequest(AbstractJSPExtensionServletWrapper.java:131)     at com.ibm.ws.jsp.webcontainerext.AbstractJSPExtensionProcessor.handleRequest(AbstractJSPExtensionProcessor.java:270)     at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.forward(WebAppRequestDispatcher.java:308)     at com.ibm.ws.webcontainer.extension.DefaultExtensionProcessor.handleRequest(DefaultExtensionProcessor.java:472)     at com.ibm.ws.wswebcontainer.extension.DefaultExtensionProcessor.handleRequest(DefaultExtensionProcessor.java:111)     at com.ibm.ws.webcontainer.webapp.WebApp.handleRequest(WebApp.java:3129)     at com.ibm.ws.webcontainer.webapp.WebGroup.handleRequest(WebGroup.java:238)     at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:811)     at com.ibm.ws.wswebcontainer.WebContainer.handleRequest(WebContainer.java:1433)     at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:93)     at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink.java:465)     at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewInformation(HttpInboundLink.java:394)     at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.ready(HttpInboundLink.java:274)     at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.sendToDiscriminators(NewConnectionInitialReadCallback.java:214)     at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.complete(NewConnectionInitialReadCallback.java:113)     at com.ibm.ws.tcp.channel.impl.AioReadCompletionListener.futureCompleted(AioReadCompletionListener.java:152)     at com.ibm.io.async.AbstractAsyncFuture.invokeCallback(AbstractAsyncFuture.java:213)     at com.ibm.io.async.AbstractAsyncFuture.fireCompletionActions(AbstractAsyncFuture.java:195)     at com.ibm.io.async.AsyncFuture.completed(AsyncFuture.java:136)     at com.ibm.io.async.ResultHandler.complete(ResultHandler.java:194)     at com.ibm.io.async.ResultHandler.runEventProcessingLoop(ResultHandler.java:741)     at com.ibm.io.async.ResultHandler$2.run(ResultHandler.java:863)     at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1510)

    volkov wrote:
    Error Message:JSPG0227E: Exception caught while translating /index.jsp: /index.jsp(13,1) --> JSPG0006E: Custom Tag is missing required attribute propertyWhich is line 13 then? And check the syntax for that tag.

  • JPSTranslate:Custom tag is missing required attribute for

    When ever I am placing a label in jsf using RAD i am getting a similar error which i am not able to rectify. And how to integreate swing components in Faces jsp file
    Please help me out.

    volkov wrote:
    Error Message:JSPG0227E: Exception caught while translating /index.jsp: /index.jsp(13,1) --> JSPG0006E: Custom Tag is missing required attribute propertyWhich is line 13 then? And check the syntax for that tag.

  • OBIEE Plug-in for AWM error: Missing spread attribute for dimension\

    Hi,
    While trying to export a cube to OBIEE administrator using the AWM plugin for OBIEE we get the following error for a lot of dimensions.
    AWM version is 11.1.0.7.0B on a 11.1.0.7 DB
    ERROR: Missing spread attribute for dimension DAY_FLG at level ALL_FLAGS
    ERROR: Missing spread attribute for dimension DAY_FLG at level FLAG
    ERROR: Validation problems found for dimension DAY_FLG
    Dimension DAY_FLG will not have UDML generated
    As suggested in other forums I have created a long_desc attribute and selected the "created level attribute in views" option for all the dimensions in the cube, still the error persists.
    Please help.
    Regards,
    Abhishek
    Edited by: 866977 on Jun 20, 2011 3:30 AM

    Thanks for you response David. But I'm afraid this does not solve the problem. I did it to all the dimensions and the error on day_flg persists. I noticed that an error on one of the other dimensions thougfh has changed. Detailed error below:
    ERROR: Missing spread attribute for dimension DAY_FLG at level ALL_FLAGS
    To Fix error: In AWM on the attribute panel for the long description attribute of each applicable dimension -
    select the check box 'Create level attribute columns in views'
    ERROR: Missing spread attribute for dimension DAY_FLG at level FLAG
    ERROR: Validation problems found for dimension DAY_FLG
    Dimension DAY_FLG will not have UDML generated
    ERROR: Missing spread attribute for dimension HOUR at level ALL_HRS
    ERROR: Spread Attribute HR_LONG_DESC found but is not visible for level HR
    The dimension HOUR will be marked invalid and no UDML will be generated for this dimension or any cube dimensioned by this dimension.
    ERROR: Validation problems found for dimension HOUR
    Please help

  • Error. Required Attribute Missing

    Hi,
    I had the following code:
    <?xml version="1.0"?>
    <!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.2//EN" "http://www.wapforum.org/DTD/wml12.dtd">
    <%@ page session="true" %>
    <%@ page import="java.io.*"%>
    <%@ page import="java.sql.*"%>
    <%@ page import="java.util.*"%>
    <%@ page import="javax.servlet.*"%>
    <%@ page import="javax.servlet.http.*"%>
    <%
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    String url = "jdbc:odbc:DataLink";
    Connection con = DriverManager.getConnection(url);
    %>
    <% Statement stmt = con.createStatement(); %>
    <%! String admin, module, grade, displaySQL; %>
    <%
    admin = (String)session.getAttribute("UserAdmin") ;
    displaySQL = "select * from Exam_Result where AdminNo = '"+admin+"' ";
    java.sql.ResultSet columns = stmt.executeQuery(displaySQL);
    response.setContentType("text/vnd.wap.wml");
    %>
    <wml>
    <card id="Result" title="Exam Result">
    <do type="accept" label="Main menu">
    <go href="MainMenu.jsp"/></do>
    <p align="center">
    <table border=1 align="center">
    <tr>
    <td>Module Code</td>
    <td>Grade</td>
    </tr>
    <% while(columns.next()) {
    module = columns.getString("Module_code");
    grade = columns.getString("Grade");
    %>
    <tr>
    <td> <%= module %> </td>
    <td> <%= grade %> </td>
    </tr>
    <% } %>
    </table>
    </p>
    </card>
    </wml>
    <%
    columns.close();
    stmt.close();
    con.close();
    %>
    When i run using nokia simulator, it display required attribute missing.
    Can anyone help me to solve the error?
    Thanx in advance....

    May be the wap phone has some differences with explorer that IE. For it connect to gateway first,then
    the gate connect to you web server. Perhaps the
    session (you are using) cannot be kept with wap phone.
    You can using url parameters to keep special customer's
    info,and create a timer in your web server to trace special customer's id or name. In this way,you can avoid using session instance. --try it and good luck

  • OEPE 12.1.3.3.1 Installation Error : Missing requirement

    Hi, I got error while installing OEPE 12.1.3.3.1 on Eclipse Luna SR1 (4.4.1) with WTP 3.6.2. Am I missing something in order to install OEPE? Below are the errors :
    Cannot complete the install because one or more required items could not be found.
      Software being installed: GlassFish Tools 7.3.3.201412231459 (oracle.eclipse.tools.glassfish.feature.group 7.3.3.201412231459)
      Missing requirement: GlassFish Tools 7.3.3.201412231459 (oracle.eclipse.tools.glassfish.feature.group 7.3.3.201412231459) requires 'org.eclipse.sapphire.feature.group [8.1.0,8.2.0)' but it could not be found

    The issue has been resolved. The installation of 12.1.3.3.1 from the online repository, Eclipse Marketplace and the network installer now functions correctly.

  • Webdynpro Model import error - missing R3NAME or ASHOST

    Hello,
    We have a new NWDI setup for our portal development for ESS and MSS components.
    (NWDI 7.01 SP 05 and EP 7.01 SP05 and ECC 6.0 )
    I am trying to import a WD model (adaptive RFC) into an NWDI project and am getting the following error.
    I get this error after searching for the available FMs in the model import wizard, and when I am at the final screen.
    However, If I create a local project, I am able to import the model (same FM and same backend system) without any problem.
    I guess the problem is with only the NWDI projects and some thing to do with NWDI or SLD connection to the backend system.
    The JCo destinations are setup correctly and I have tried using a couple of different logical system names and there is no change.
    Does any one have any idea on what I am missing?
    Appreciate your response.
    Thanks,
    Shanti
    Here is the error:
    [Warning]:     Creating a connection with Metamodel language <de> failed.  Continuing with language <en>
    [Fatal]:     com.sap.mw.jco.JCO$Exception: Missing R3NAME=... or ASHOST=... in connect_param in RfcOpenEx
    [Info]:     Creating Model: IT0041
    [Info]:     Creating Model Class: Zfm_Hpt_Anndate_Input
    [Info]:     Creating Model Class: Zfm_Hpt_Anndate_Output
    [Info]:     Creating Model Class Property: E_Anndate
    [Info]:     Creating Model Class Property: I_Name
    [Info]:     Creating Model Relation: Zfm_Hpt_Anndate_Input:Output:Zfm_Hpt_Anndate_Output

    Hey Puneet,
    The problem seems to be more weird.
    The JCos are fine .... and I am infact using the same JCos in both the cases.
    I can not only import the model in a local project but also import the model in an NWDI project for a different DC.
    Somehow the problem is with creating the model in only one of the DCs in the ESS SC.(ess/quotas)
    Well, I finally went ahead and finished creating the project (ignoring the error I was getting) and the model works fine after import and deployment.
    At this point, I am not sure what the problem was but it does not impact my model at runtime. Every thing works fine as expected.
    This seems like a bug ... and the error is somehow showing up unnecessarily ...
    Thanks,
    Shanti

  • Model import error - Missing R3NAME or ASHOST in connect_param in RfcOpenEx

    Hello,
    We have a new NWDI setup for our portal development for ESS and MSS components.
    (NWDI 7.01 SP 05 and EP 7.01 SP05 and ECC 6.0 )
    I am trying to import a WD model (adaptive RFC) into an NWDI project and am getting the following error.
    I get this error after searching for the available FMs in the model import wizard, and when I am at the final screen.
    However, If I create a local project, I am able to import the model (same FM and same backend system) without any problem.
    I guess the problem is with only the NWDI projects and some thing to do with NWDI or SLD connection to the backend system.
    The JCo destinations are setup correctly and I have tried using a couple of different logical system names and there is no change.
    Does any one have any idea on what I am missing?
    Appreciate your response.
    Thanks,
    Shanti
    Here is the error:
    [Warning]:     Creating a connection with Metamodel language <de> failed.  Continuing with language <en>
    [Fatal]:     com.sap.mw.jco.JCO$Exception: Missing R3NAME=... or ASHOST=... in connect_param in RfcOpenEx
    [Info]:     Creating Model: IT0041
    [Info]:     Creating Model Class: Zfm_Hpt_Anndate_Input
    [Info]:     Creating Model Class: Zfm_Hpt_Anndate_Output
    [Info]:     Creating Model Class Property: E_Anndate
    [Info]:     Creating Model Class Property: I_Name
    [Info]:     Creating Model Relation: Zfm_Hpt_Anndate_Input:Output:Zfm_Hpt_Anndate_Output

    The problem seems to be more weird.
    I can not only import the model in a local project but also import the model in an NWDI project for a different DC.
    Somehow the problem is with creating the model in only one of the DCs in the ESS SC.(ess/quotas)
    Well, I finally went ahead and finished creating the project (ignoring the error I was getting) and the model works fine after import and deployment.
    At this point, I am not sure what the problem was but it does not impact my model at runtime. Every thing works fine as expected.
    This seems like a bug ... and the error is somehow showing up unnecessarily ...
    Thanks,
    Shanti

  • Unable to resolve "Missing Required java Project : com.sap.dictionary"

    HI ,
      Iam praveen , working on web dynpro's , I imported a project template and repaired it and all the .jar files are included in the project . But still am getting some errors like the below...
    Error               Missing required Java project: com.sap.dictionary.services.     com.sap.dictionary.runtime          Build path
    Error               Missing required Java project: com.tssap.sap.libs.logging.     com.sap.dictionary.runtime          Build path
    Error               Missing required Java project: com.tssap.sap.libs.xmltoolkit.     com.sap.dictionary.runtime          Build path
    Error               Missing required Java project: org.eclipse.core.resources.     com.sap.dictionary.runtime          Build path
    Error               Missing required Java project: org.eclipse.ui.     com.sap.dictionary.runtime          Build path
    Error               The project was not built due to classpath errors (incomplete or involved in cycle).     com.sap.dictionary.runtime          
    can anyone help me in resolving these problems, i have been trying to resolve this problem , but failed. send me solution if any one can solve it
    -Praveen

    Hi praveen,
    your project refers to a dictionary that you haven't in the project. Besides, right click on the WD project and check all the external references to others projects. You must open the external projects pointed by your WD.
    Hope this help you,
    Vito

  • CS3 ILLUST Missing required plugins BRS Pencil Tool ExpandS

    Have installed a demo disk for CS3 that came from Adobe.
    Illustrator doesn't work!
    Get the message..."Missing required plugins BRS Pencil Tool ExpandS"
    I found this link but it was for "BRS Pencil Tool Pathfinder Suite"
    http://kb.adobe.com/selfservice/viewContent.do?externalId=331889&sliceId=2
    any info on this!

    Not sure it exactly the same (this mentions CS2/3) but...
    http://helpx.adobe.com/illustrator/kb/error-missing-required-plugins-brs.html

  • Missing required plugins BRS Pencil Tool ExpendS. Anyone

    Hi all,
    My Illustrator CS5 cannot open anymore because the required plugin BRS Pencil Tool ExpendS is missing.
    Is there anyone who has occurred the same problem before? Where can I download the missing plugin? Is there a fast way to get it up and running?
    Thank you for your help, I am not an expert and shall appreciate your suggestions on this forum.
    Best wishes,
    Simone

    Not sure it exactly the same (this mentions CS2/3) but...
    http://helpx.adobe.com/illustrator/kb/error-missing-required-plugins-brs.html

  • FatalError: The required attribute 'FeatureDefinitionScope' is missing

    Hi all, 
    I'm trying to export a Subsite from a WSS 3.0 SharePoint to SharePoint Foundation 2013. I haven't installed or enabled any further features on both servers. While importing the site via Import -SPWeb I got the Error FatalError: The required attribute
    'FeatureDefinitionScope' is missing. I compared the features and cant see any obvious difference. Any Suggestions what else I can do?
    Here is the whole Error message
    [29.01.2014 15:01:05] [ListItem] [default.master]   Verbose: List URL: /websites/Webseitesammlung/_catalogs/masterpage
    [29.01.2014 15:01:06] FatalError: The required attribute 'FeatureDefinitionScope' is missing.
    [29.01.2014 15:01:06] Debug:    at System.Xml.Schema.XmlSchemaValidator.SendValidationEvent(XmlSchemaValidationException e, XmlSeverityType severity)
       at System.Xml.Schema.XmlSchemaValidator.CheckRequiredAttributes(SchemaElementDecl currentElementDecl)
       at System.Xml.Schema.XmlSchemaValidator.ValidateEndOfAttributes(XmlSchemaInfo schemaInfo)
       at System.Xml.XsdValidatingReader.ProcessElementEvent()
       at System.Xml.XsdValidatingReader.Read()
       at System.Xml.XmlReader.ReadToDescendant(String name)
       at Microsoft.SharePoint.Deployment.XmlFormatter.Deserialize(Stream serializationStream)
       at Microsoft.SharePoint.Deployment.ObjectSerializer.Deserialize(Stream serializationStream)
       at Microsoft.SharePoint.Deployment.SPImport.DeserializeObjects()
       at Microsoft.SharePoint.Deployment.SPImport.Run()
    [29.01.2014 15:01:06] Progress: Import did not complete.
    Thanks for any suggestions!

    You can't use export and import, as this will not work across versions.  Your path to 2013 should be attaching your wss3.0 db to 2010, so that it can upgrade, and then detach and attach it to 2013.  Backup/Restore does NOT work across versions...
    even 2010 to 2013...

  • Error in QP: Bulk Import of Price List

    Hi All,
    I am trying to import price list records using the concurrent program 'QP: Bulk Import of Price List'. I am facing one issue in this...below is the error detail:
    7164262/PRL/QP_INTERFACE_LIST_LINES//RAGH-L-3 A price break child line must have at least one pricing attribute.
    The header and Qualifier records are getting imported sucessfully, the issue is with the line and it's attributes. Below are the fields on interface tables whcih i m populating:
    INSERT INTO QP_INTERFACE_LIST_LINES (
    ORIG_SYS_LINE_REF,
    ORIG_SYS_HEADER_REF,
    LIST_LINE_TYPE_CODE,
    START_DATE_ACTIVE,
    END_DATE_ACTIVE,
    ARITHMETIC_OPERATOR,
    OPERAND,
    PRIMARY_UOM_FLAG,
    PRODUCT_PRECEDENCE,
    INTERFACE_ACTION_CODE,
    PROCESS_FLAG,
    PROCESS_STATUS_FLAG,
    PRICE_BY_FORMULA,
    AUTOMATIC_FLAG,
    REPRICE_FLAG
    --PRICING_GROUP_SEQUENCE
    ) VALUES
    'RAGH-L-3',
    'RAGH-H-3',
    'PLL',
    sysdate,
    NULL,
    'UNIT_PRICE',
    150,
    'Y',
    230,
    'INSERT',
    'Y',
    'P',
    NULL,
    'Y',
    'Y'
    --0
    INSERT INTO qp_interface_pricing_attribs
    orig_sys_pricing_attr_ref,
    orig_sys_line_ref,
    orig_sys_header_ref,
    PRODUCT_ATTRIBUTE_CONTEXT,
    product_attr_code,
    product_attr_val_disp,
    product_uom_code,
    interface_action_code,
    process_flag,
    process_status_flag,
    PRICING_ATTRIBUTE_CONTEXT,
    PRICING_ATTRIBUTE,
    PRICING_ATTR_VALUE_FROM_DISP,
    COMPARISON_OPERATOR_CODE,
    PRICING_ATTR_VALUE_TO_DISP )
    VALUES
    'RAGH-ATTR-3',
    'RAGH-L-3',
    'RAGH-H-3',
    'ITEM',
    'INVENTORY_ITEM_ID',
    'CM13139',
    'EA',
    'INSERT',
    'Y',
    'P',
    'ADS_PRICING',
    'COST',
    '25',
    'BETWEEN',
    '30' );
    Using the above process I am getting the error as mentioned:"7164262/PRL/QP_INTERFACE_LIST_LINES//RAGH-L-3 A price break child line must have at least one pricing attribute.".
    If I am not using the pricing attributes PRICING_ATTRIBUTE_CONTEXT,PRICING_ATTR_CODE, Pricing_attr_value_from,COMPARISON_OPERATOR_CODE, PRICING_ATTR_VALUE_TO I am able to import the line records also.
    The script provided by Oracle also uses the same columns in the interface table, kindly help me if any one have any idea regarding this issue.

    Hi Luko,
    I tried the same script given by oracle, but it is giving me the error as I mentioned earlier. When I am not using the pricing line attributes, it is working fine. The error is coming only when I am passing the pricing attribute parameter(PRICING_ATTRIBUTE_CONTEXT,     PRICING_ATTR_CODE,     PRICING_ATTR_VALUE_FROM_DISP,
    COMPARISON_OPERATOR_CODE,     PRICING_ATTR_VALUE_TO_DISP).
    I am passing the values as shown below:
    PRICING_ATTRIBUTE_CONTEXT-Code fro pricing context i.e PRICING ATTRIBUTE
    PRICING_ATTR_CODE-code for attribute i.e. FREIGHT_COST
    PRICING_ATTR_VALUE_FROM_DISP-200
    PRICING_ATTR_VALUE_TO_DISP-300
    COMPARISON_OPERATOR_CODE-BETWEEN
    Thanks!

  • Bulk Import into contact list error.

    Hi,
    We are testing out the bulk import into contact list feature and we are getting an error that we can't resolve.  We followed the directions from the documentation http://topliners.eloqua.com/docs/DOC-6918
    Here's the sample request we are making:
    URL: https://www02.secure.eloqua.com/api/bulk/2.0/contacts/imports
    Request Header:
    Authorization: [our token]
    Content-Type: application/json
    Request Body:
      "name": "test",
      "fields": {
        "emailAddress": "{{Contact.Field(C_EmailAddress)}}"
      "syncActions": [
          "action": "add",
          "destination": "/contacts/lists/63"
      "identifierFieldName": "emailAddress",
      "isSyncTriggeredOnImport" : "true"
    Response Body:
        "failures": [{
            "field": "destination",
            "stackTrace": [{
                "field": "syncActions"
            "value": "/contacts/lists/63",
            "constraint": "ML Statements must have a ContactList root (see http://topliners.eloqua.com/docs/DOC-4298 for details) (when action = add)."
    Is there a step we are missing? 
    Thanks for the help.

    Hi Benny,
    In syncActions, instead of: "destination": "/contacts/lists/63", please try: "destination": "{{ContactList[63]}}".

Maybe you are looking for

  • How to mark row in OO ALV ?

    Hi , I am using OO editable ALV . Method set_table_for_first_display has been used . In the report, user can select a row /rows and click on button 'EDIT' in the toolbar . Then one pop up screen will be displayed where user can change the fields . Th

  • Buy from iTunes of another country

    Dear Common Wisdom: Can I buy credit for shopping in an iTunes store from any country? Thanks! Constantine

  • WL Bug: StringIndexOutOfBoundsException when deploying war

    When deploying a war file in WLS 6.1 SP2 I get below exception. This seems to be a WL bug caused by a line in WebAppHelper.resolveManifestName s4 = s4.substring(0, s4.length() - 1); There is no check if s4.length() is 0. Is there a fix included in a

  • RAW+JPEG with unsupported RAW

    I'm now using a Panasonic Lumix DMC-L1 (and really liking it), whose RAW files aren't yet supported by Aperture. I figured out that Aperture silently imports the JPEGs with the RAWs (camera shoots RAW+JPEG), and also how to make a version from the JP

  • Human Workflow email notification to a distribution list when assigned to an approval group

    Hi All, is there a way to send the notification email to an email distribution list when a task is assigned to an approval group instead of sending individuals emails to each member? As of now HW config is sending individual emails to each member of