コード例 #1
0
 def __init__(self):
     attributes = ('COMPONENT', 'SAPRELEASE', 'EXTRELEASE',
                   'COMP_TYPE', 'SYSTEMNAME')
     _SolutionManagerTableQuery.__init__(self, "SMSY_SYST_COMP", attributes,
                                         inField='VERSION',
                                         inFieldValues=('ACTIVE',))
コード例 #2
0
 def __init__(self):
     _SolutionManagerTableQuery.__init__(self, self.TABLE_NAME,
                                         self.ATTRIBUTES,
                                         whereClause=self.WHERE_CLAUSE)
コード例 #3
0
 def __init__(self):
     _SolutionManagerTableQuery.__init__(self, self.TABLE_NAME,
                                         self.ATTRIBUTES,
                                         inField='VERSION',
                                         inFieldValues=('ACTIVE',))
コード例 #4
0
 def __init__(self, attributes=()):
     attributes = (self.ATTRIBUTES + attributes)
     _SolutionManagerTableQuery.__init__(self, self.TABLE_NAME, attributes,
                                         inField=self.IN_FIELD,
                                         inFieldValues=self.IN_VALUES)