Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • How to retrieve or get records from DDLRecord in liferay 6.2

    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 765
    Comment on it

    Hello guys
    To retrieve a record form DDLRecord in liferay 6.2 please follow the below given code. Here in below code I am retrieving records from DDLRecord according recordId. here recordId = 11207.

    List<DDLRecord> ddlRecords = null;
    
    try {
    ddlRecords = DDLRecordLocalServiceUtil.getDDLRecords(-1,Integer.MAX_VALUE);
    if (ddlRecords != null) {
    for (int i = 0; i <= ddlRecords.size(); i++) {
    if( ddlRecords.get(i).getRecordId()==11207)
    {
    System.out.println(ddlRecords.get(i).getCompanyId());
    System.out.println(ddlRecords.get(i).getRecordSetId());
    System.out.println(ddlRecords.get(i).getDisplayIndex());
    System.out.println(ddlRecords.get(i).getRecordId());
    System.out.println(ddlRecords.get(i).getPrimaryKey());
    System.out.println(ddlRecords.get(i).getUserId());
    System.out.println(ddlRecords.get(i).getClass().toString());
    }
    }
    }
    }
    } catch (Exception e) {
    e.printStackTrace();
    }
    

 0 Comment(s)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Fill out the form below and instructions to reset your password will be emailed to you:
Reset Password
Fill out the form below and reset your password: