rnsap 0.4.0 → 0.4.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,59 @@
1
+ # class used to represent REQUISITION_LIMITS. Used internally
2
+ class PreqLimits
3
+ # @return [Integer] Total value of unplanned entered services
4
+ attr_accessor :act_value
5
+ # @return [Integer] Percentage for price determination
6
+ attr_accessor :cont_perc
7
+ # @return [String] Limit on contract items exists
8
+ attr_accessor :con_exist
9
+ # @return [Integer] Currency Key
10
+ attr_accessor :currency
11
+ # @return [String] ISO Currency Code
12
+ attr_accessor :curr_isocd
13
+ # @return [String] Edition of Service Type
14
+ attr_accessor :edition
15
+ # @return [Integer] Expected value
16
+ attr_accessor :exp_value
17
+ # @return [Integer] Actual value (from other sources)
18
+ attr_accessor :freact_val
19
+ # @return [Integer] Free limit
20
+ attr_accessor :free_limit
21
+ # @return [Integer] Overall limit
22
+ attr_accessor :limit
23
+ # @return [String] No Limit
24
+ attr_accessor :no_frlimit
25
+ # @return [String] No Limit
26
+ attr_accessor :no_limit
27
+ # @return [String] Package number
28
+ attr_accessor :pckg_no
29
+ # @return [String] Price Change in Entry Sheet
30
+ attr_accessor :price_chg
31
+ # @return [String] Short Description of Service Type
32
+ attr_accessor :serv_type
33
+ # @return [Integer] Actual value on service type limit
34
+ attr_accessor :ssc_actval
35
+ # @return [String] Limits exist for service types
36
+ attr_accessor :ssc_exist
37
+ # @return [Integer] Value limits on service types
38
+ attr_accessor :ssc_limit
39
+ # @return [String] No limit on standard service type
40
+ attr_accessor :ssc_nolim
41
+ # @return [Integer] Percentage for price determination
42
+ attr_accessor :ssc_perc
43
+ # @return [String] Price Change in Entry Sheet
44
+ attr_accessor :ssc_prschg
45
+ # @return [Integer] Actual value on model specifications limits
46
+ attr_accessor :tmp_actval
47
+ # @return [String] Limit on service packages exists
48
+ attr_accessor :tmp_exist
49
+ # @return [Integer] Limits on model service specifications
50
+ attr_accessor :tmp_limit
51
+ # @return [String] No Limit on Model Specifications
52
+ attr_accessor :tmp_nolim
53
+ # @return [String] Number of a Set of Model Service Specifications
54
+ attr_accessor :tmp_number
55
+ # @return [Integer] Percentage for Price Determination
56
+ attr_accessor :tmp_perc
57
+ # @return [String] Price Change in Entry Sheet
58
+ attr_accessor :tmp_prschg
59
+ end
@@ -0,0 +1,153 @@
1
+ # class used to represent REQUISITION_SERVICES. Used internally
2
+ class PreqServices
3
+ # @return [Integer] Purchase Order: Entered Quantity
4
+ attr_accessor :actual_qty
5
+ # @return [Integer] Purchase order: Entered value
6
+ attr_accessor :actual_val
7
+ # @return [String] Alternative Line
8
+ attr_accessor :alternat
9
+ # @return [String] Base Unit of Measure
10
+ attr_accessor :base_uom
11
+ # @return [String] Basic Line
12
+ attr_accessor :basic_line
13
+ # @return [String] Alternatives: Reference to basic item
14
+ attr_accessor :basline_no
15
+ # @return [String] Start Time
16
+ attr_accessor :begintime
17
+ # @return [String] Bidder's Line
18
+ attr_accessor :bidder
19
+ # @return [String] Blanket Line
20
+ attr_accessor :blanket
21
+ # @return [String] Entry: Unplanned from contract
22
+ attr_accessor :con_line
23
+ # @return [String] Entry: Unplanned from contract
24
+ attr_accessor :con_pckg
25
+ # @return [Integer] Contract: Quantity Released (by Issue of Release Orders)
26
+ attr_accessor :con_qty
27
+ # @return [Integer] Contract: Value released (via release orders)
28
+ attr_accessor :con_value
29
+ # @return [Date] Date
30
+ attr_accessor :date
31
+ # @return [String] Deletion Indicator
32
+ attr_accessor :delete_ind
33
+ # @return [String] Distribution indicator for multiple account assignment
34
+ attr_accessor :distrib
35
+ # @return [String] Edition of Service Type
36
+ attr_accessor :edition
37
+ # @return [String] End Time
38
+ attr_accessor :endtime
39
+ # @return [String] Contingency Line
40
+ attr_accessor :eventual
41
+ # @return [String] External Personnel Number
42
+ attr_accessor :extpers_no
43
+ # @return [String] External Reference Key for Service
44
+ attr_accessor :extrefkey
45
+ # @return [String] Line Number
46
+ attr_accessor :ext_line
47
+ # @return [String] Vendor's Service Number
48
+ attr_accessor :ext_serv
49
+ # @return [String] Formula Number
50
+ attr_accessor :formula
51
+ # @return [Integer] Formula Value
52
+ attr_accessor :form_val1
53
+ # @return [Integer] Formula value
54
+ attr_accessor :form_val2
55
+ # @return [Integer] Formula value
56
+ attr_accessor :form_val3
57
+ # @return [Integer] Formula value
58
+ attr_accessor :form_val4
59
+ # @return [Integer] Formula value
60
+ attr_accessor :form_val5
61
+ # @return [String] Lower Limit
62
+ attr_accessor :from_line
63
+ # @return [Integer] Gross value
64
+ attr_accessor :gross_val
65
+ # @return [Integer] Gross price
66
+ attr_accessor :gr_price
67
+ # @return [String] Hierarchically superior line number
68
+ attr_accessor :hi_line_no
69
+ # @return [String] Informatory Line
70
+ attr_accessor :inform
71
+ # @return [String] Entry: Unplanned, limit line
72
+ attr_accessor :limit_line
73
+ # @return [String] Internal line number
74
+ attr_accessor :line_no
75
+ # @return [String] Material Group
76
+ attr_accessor :matl_group
77
+ # @return [Integer] Net value
78
+ attr_accessor :net_value
79
+ # @return [Integer] Non-deductible input tax
80
+ attr_accessor :nond_itax
81
+ # @return [String] Line with Open Quantity
82
+ attr_accessor :open_qty
83
+ # @return [String] Indicator: Outline line
84
+ attr_accessor :outl_ind
85
+ # @return [I] Hierarchy level of group
86
+ attr_accessor :outl_level
87
+ # @return [String] Outline Level
88
+ attr_accessor :outl_no
89
+ # @return [Integer] Overfulfillment Tolerance
90
+ attr_accessor :ovf_tol
91
+ # @return [String] Unlimited Overfulfillment
92
+ attr_accessor :ovf_unlim
93
+ # @return [String] Package number
94
+ attr_accessor :pckg_no
95
+ # @return [String] Personnel Number
96
+ attr_accessor :pers_no
97
+ # @return [Date] Period of Performance End Date
98
+ attr_accessor :per_edate
99
+ # @return [Date] Period of Performance Start Date
100
+ attr_accessor :per_sdate
101
+ # @return [String] Entry: Planned package line
102
+ attr_accessor :pln_line
103
+ # @return [String] Source package number
104
+ attr_accessor :pln_pckg
105
+ # @return [String] Price Change in Entry Sheet
106
+ attr_accessor :price_chg
107
+ # @return [Integer] Price unit
108
+ attr_accessor :price_unit
109
+ # @return [Integer] Quantity with Sign
110
+ attr_accessor :quantity
111
+ # @return [String] Activity Number
112
+ attr_accessor :service
113
+ # @return [String] Short Description of Service Type
114
+ attr_accessor :serv_type
115
+ # @return [String] Short Text
116
+ attr_accessor :short_text
117
+ # @return [String] Standard Service Catalog Item
118
+ attr_accessor :ssc_item
119
+ # @return [String] Service line refers to standard service catalog limits
120
+ attr_accessor :ssc_lim
121
+ # @return [String] Subpackage number
122
+ attr_accessor :subpckg_no
123
+ # @return [String] Supplementary Line
124
+ attr_accessor :supp_line
125
+ # @return [Integer] Target Value
126
+ attr_accessor :target_val
127
+ # @return [String] Tax Jurisdiction
128
+ attr_accessor :taxjurcode
129
+ # @return [String] Tax on Sales/Purchases Code
130
+ attr_accessor :tax_code
131
+ # @return [String] Entry: Unplanned service from model specifications
132
+ attr_accessor :tmp_line
133
+ # @return [String] Entry: Unplanned service from model specifications
134
+ attr_accessor :tmp_pckg
135
+ # @return [String] Upper Limit
136
+ attr_accessor :to_line
137
+ # @return [Integer] Contract: Unplanned Released Quantity
138
+ attr_accessor :unpl_qty
139
+ # @return [Integer] Contract: Unplanned released value
140
+ attr_accessor :unpl_val
141
+ # @return [String] ISO code for unit of measurement
142
+ attr_accessor :uom_iso
143
+ # @return [String] User-Defined Field
144
+ attr_accessor :userf1_num
145
+ # @return [String] User-Defined Field
146
+ attr_accessor :userf1_txt
147
+ # @return [Integer] User-Defined Field
148
+ attr_accessor :userf2_num
149
+ # @return [String] User-Defined Field
150
+ attr_accessor :userf2_txt
151
+ # @return [String] Wage Type
152
+ attr_accessor :wagetype
153
+ end
@@ -0,0 +1,13 @@
1
+ # class used to represent REQUISITION_SERVICES_TEXTS. Used internally
2
+ class PreqServicesText
3
+ # @return [String] Tag column
4
+ attr_accessor :format_col
5
+ # @return [String] Internal line number
6
+ attr_accessor :line_no
7
+ # @return [String] Package number
8
+ attr_accessor :pckg_no
9
+ # @return [String] Text ID
10
+ attr_accessor :text_id
11
+ # @return [String] Text Line
12
+ attr_accessor :text_line
13
+ end
@@ -0,0 +1,23 @@
1
+ # class used to represent REQUISITION_SRV_ACCASS_VALUES. Used internally
2
+ class PreqServicesAccassValues
3
+ # @return [String] Deletion Indicator
4
+ attr_accessor :delete_ind
5
+ # @return [String] Highest package number
6
+ attr_accessor :hpackno
7
+ # @return [String] Inactive account assignment specification
8
+ attr_accessor :inactive
9
+ # @return [String] Line Number
10
+ attr_accessor :line_no
11
+ # @return [Integer] Net value
12
+ attr_accessor :net_value
13
+ # @return [String] Package number
14
+ attr_accessor :pckg_no
15
+ # @return [Integer] Percentage for Account Assignment Value Distribution
16
+ attr_accessor :percentage
17
+ # @return [Integer] Quantity
18
+ attr_accessor :quantity
19
+ # @return [String] Sequential Number of Account Assignment
20
+ attr_accessor :serial_no
21
+ # @return [String] Seq. Number of Acc. Assignment Specification: Service Line
22
+ attr_accessor :serno_line
23
+ end
@@ -0,0 +1,13 @@
1
+ # class used to represent REQUISITION_TEXT STRUCTURE. Used internally
2
+ class PreqText
3
+ # @return [String] Item number of purchase requisition
4
+ attr_accessor :preq_item
5
+ # @return [String] Purchase Requisition Number
6
+ attr_accessor :preq_no
7
+ # @return [String] Tag column
8
+ attr_accessor :text_form
9
+ # @return [String] Text ID
10
+ attr_accessor :text_id
11
+ # @return [String] Text Line
12
+ attr_accessor :text_line
13
+ end
@@ -0,0 +1,23 @@
1
+ # class used to represent GENERAL_RELEASE_INFO. Used internally
2
+ class PreqGenReleaseInfo
3
+ # @return [String] Item number of purchase requisition
4
+ attr_accessor :preq_item
5
+ # @return [String] Purchase Requisition Number
6
+ attr_accessor :preq_no
7
+ # @return [String] Release code
8
+ attr_accessor :rel_code
9
+ # @return [String] Description of release code
10
+ attr_accessor :rel_cod_tx
11
+ # @return [String] Release group
12
+ attr_accessor :rel_group
13
+ # @return [String] Description of release group
14
+ attr_accessor :rel_grp_tx
15
+ # @return [String] Release indicator
16
+ attr_accessor :rel_ind
17
+ # @return [String] Description of Release Indicator
18
+ attr_accessor :rel_ind_tx
19
+ # @return [String] Release Strategy
20
+ attr_accessor :rel_strat
21
+ # @return [String] Description of release strategy
22
+ attr_accessor :rel_str_tx
23
+ end
@@ -0,0 +1,55 @@
1
+ # class used to represent RELEASE_FINAL. Used internally
2
+ class PreqReleaseFinal
3
+ # @return [String] Item number of purchase requisition
4
+ attr_accessor :preq_item
5
+ # @return [String] Purchase Requisition Number
6
+ attr_accessor :preq_no
7
+ # @return [String] Description of release code 1
8
+ attr_accessor :rel_cd_tx1
9
+ # @return [String] Description of release code 2
10
+ attr_accessor :rel_cd_tx2
11
+ # @return [String] Description of release code 3
12
+ attr_accessor :rel_cd_tx3
13
+ # @return [String] Description of release code 4
14
+ attr_accessor :rel_cd_tx4
15
+ # @return [String] Description of release code 5
16
+ attr_accessor :rel_cd_tx5
17
+ # @return [String] Description of release code 6
18
+ attr_accessor :rel_cd_tx6
19
+ # @return [String] Description of release code 7
20
+ attr_accessor :rel_cd_tx7
21
+ # @return [String] Description of release code
22
+ attr_accessor :rel_cd_tx8
23
+ # @return [String] Release code 1
24
+ attr_accessor :rel_code1
25
+ # @return [String] Release code 2
26
+ attr_accessor :rel_code2
27
+ # @return [String] Release code 3
28
+ attr_accessor :rel_code3
29
+ # @return [String] Release code 4
30
+ attr_accessor :rel_code4
31
+ # @return [String] Release code 5
32
+ attr_accessor :rel_code5
33
+ # @return [String] Release code 6
34
+ attr_accessor :rel_code6
35
+ # @return [String] Release code 7
36
+ attr_accessor :rel_code7
37
+ # @return [String] Release code 8
38
+ attr_accessor :rel_code8
39
+ # @return [String] Role resolution for workflow for release code 1
40
+ attr_accessor :rel_wf1
41
+ # @return [String] Role resolution for workflow for release code 2
42
+ attr_accessor :rel_wf2
43
+ # @return [String] Role resolution for workflow for release code 3
44
+ attr_accessor :rel_wf3
45
+ # @return [String] Role resolution for workflow for release code 4
46
+ attr_accessor :rel_wf4
47
+ # @return [String] Role resolution for workflow for release code 5
48
+ attr_accessor :rel_wf5
49
+ # @return [String] Role resolution for workflow for release code 6
50
+ attr_accessor :rel_wf6
51
+ # @return [String] Role resolution for workflow for release code 7
52
+ attr_accessor :rel_wf7
53
+ # @return [String] Role resolution for workflow for release code 8
54
+ attr_accessor :rel_wf8
55
+ end
@@ -0,0 +1,55 @@
1
+ # class used to represent RELEASE_ALREADY_POSTED. Used internally
2
+ class PreqReleasePosted
3
+ # @return [String] Item number of purchase requisition
4
+ attr_accessor :preq_item
5
+ # @return [String] Purchase Requisition Number
6
+ attr_accessor :preq_no
7
+ # @return [String] Description of release code 1
8
+ attr_accessor :rel_cd_tx1
9
+ # @return [String] Description of release code 2
10
+ attr_accessor :rel_cd_tx2
11
+ # @return [String] Description of release code 3
12
+ attr_accessor :rel_cd_tx3
13
+ # @return [String] Description of release code 4
14
+ attr_accessor :rel_cd_tx4
15
+ # @return [String] Description of release code 5
16
+ attr_accessor :rel_cd_tx5
17
+ # @return [String] Description of release code 6
18
+ attr_accessor :rel_cd_tx6
19
+ # @return [String] Description of release code 7
20
+ attr_accessor :rel_cd_tx7
21
+ # @return [String] Description of release code
22
+ attr_accessor :rel_cd_tx8
23
+ # @return [String] Release code 1
24
+ attr_accessor :rel_code1
25
+ # @return [String] Release code 2
26
+ attr_accessor :rel_code2
27
+ # @return [String] Release code 3
28
+ attr_accessor :rel_code3
29
+ # @return [String] Release code 4
30
+ attr_accessor :rel_code4
31
+ # @return [String] Release code 5
32
+ attr_accessor :rel_code5
33
+ # @return [String] Release code 6
34
+ attr_accessor :rel_code6
35
+ # @return [String] Release code 7
36
+ attr_accessor :rel_code7
37
+ # @return [String] Release code 8
38
+ attr_accessor :rel_code8
39
+ # @return [String] Role resolution for workflow for release code 1
40
+ attr_accessor :rel_wf1
41
+ # @return [String] Role resolution for workflow for release code 2
42
+ attr_accessor :rel_wf2
43
+ # @return [String] Role resolution for workflow for release code 3
44
+ attr_accessor :rel_wf3
45
+ # @return [String] Role resolution for workflow for release code 4
46
+ attr_accessor :rel_wf4
47
+ # @return [String] Role resolution for workflow for release code 5
48
+ attr_accessor :rel_wf5
49
+ # @return [String] Role resolution for workflow for release code 6
50
+ attr_accessor :rel_wf6
51
+ # @return [String] Role resolution for workflow for release code 7
52
+ attr_accessor :rel_wf7
53
+ # @return [String] Role resolution for workflow for release code 8
54
+ attr_accessor :rel_wf8
55
+ end
@@ -0,0 +1,55 @@
1
+ # class used to represent RELEASE_PREREQUISITES. Used internally
2
+ class PreqReleasePrerequisites
3
+ # @return [String] Item number of purchase requisition
4
+ attr_accessor :preq_item
5
+ # @return [String] Purchase Requisition Number
6
+ attr_accessor :preq_no
7
+ # @return [String] Description of release code 1
8
+ attr_accessor :rel_cd_tx1
9
+ # @return [String] Description of release code 2
10
+ attr_accessor :rel_cd_tx2
11
+ # @return [String] Description of release code 3
12
+ attr_accessor :rel_cd_tx3
13
+ # @return [String] Description of release code 4
14
+ attr_accessor :rel_cd_tx4
15
+ # @return [String] Description of release code 5
16
+ attr_accessor :rel_cd_tx5
17
+ # @return [String] Description of release code 6
18
+ attr_accessor :rel_cd_tx6
19
+ # @return [String] Description of release code 7
20
+ attr_accessor :rel_cd_tx7
21
+ # @return [String] Description of release code
22
+ attr_accessor :rel_cd_tx8
23
+ # @return [String] Release code 1
24
+ attr_accessor :rel_code1
25
+ # @return [String] Release code 2
26
+ attr_accessor :rel_code2
27
+ # @return [String] Release code 3
28
+ attr_accessor :rel_code3
29
+ # @return [String] Release code 4
30
+ attr_accessor :rel_code4
31
+ # @return [String] Release code 5
32
+ attr_accessor :rel_code5
33
+ # @return [String] Release code 6
34
+ attr_accessor :rel_code6
35
+ # @return [String] Release code 7
36
+ attr_accessor :rel_code7
37
+ # @return [String] Release code 8
38
+ attr_accessor :rel_code8
39
+ # @return [String] Role resolution for workflow for release code 1
40
+ attr_accessor :rel_wf1
41
+ # @return [String] Role resolution for workflow for release code 2
42
+ attr_accessor :rel_wf2
43
+ # @return [String] Role resolution for workflow for release code 3
44
+ attr_accessor :rel_wf3
45
+ # @return [String] Role resolution for workflow for release code 4
46
+ attr_accessor :rel_wf4
47
+ # @return [String] Role resolution for workflow for release code 5
48
+ attr_accessor :rel_wf5
49
+ # @return [String] Role resolution for workflow for release code 6
50
+ attr_accessor :rel_wf6
51
+ # @return [String] Role resolution for workflow for release code 7
52
+ attr_accessor :rel_wf7
53
+ # @return [String] Role resolution for workflow for release code 8
54
+ attr_accessor :rel_wf8
55
+ end