Won't Fix
Details
Assignee
UnassignedUnassignedReporter
AhmedEAhmedELabels
Components
Affects versions
Priority
Major
Details
Details
Assignee
Unassigned
UnassignedReporter
AhmedE
AhmedELabels
Components
Affects versions
Priority
Created May 18, 2014 at 1:04 PM
Updated August 29, 2014 at 12:49 PM
Resolved May 18, 2014 at 3:06 PM
@SuppressWarnings("deprecation")
public static int getNextID (int AD_Client_ID, String TableName, String trxName)
{
boolean SYSTEM_NATIVE_SEQUENCE = MSysConfig.getBooleanValue(MSysConfig.SYSTEM_NATIVE_SEQUENCE,false);
boolean adempiereSys = Ini.isPropertyBool(Ini.P_ADEMPIERESYS);
if(SYSTEM_NATIVE_SEQUENCE && !adempiereSys)
{
int m_sequence_id = CConnection.get().getDatabase().getNextID(TableName+"_SQ");
if (m_sequence_id == -1) {
// try to create the sequence and try again
MSequence.createTableSequence(Env.getCtx(), TableName, trxName, true);
m_sequence_id = CConnection.get().getDatabase().getNextID(TableName+"_SQ");
}
return m_sequence_id;
}
return MSequence.getNextID (AD_Client_ID, TableName, trxName); // it is ok to call deprecated method here
} // getNextID
I am try to get the output for that method it return empty data
aslo using
MSequence.getNextID (AD_Client_ID, TableName, trxName); // it is ok to call deprecated method here.
but i dont get the next ID for Table "m_product"