Questions tagged [number-sequence]
39 questions
0
votes
5 answers
Java Thread - i want to generate numbers in sequence eg: 1,2,3,4...so on (there will be 2 threads only )
Java Thread - i want to generate numbers in sequence eg: 1,2,3,4... (there will be 2 threads only ) 1st thread o/p will be 1 ,second thread o/p will be 2 , again 1st thread o/p will be 3 and so on , it can be upto 10 or upto n number whatever just…

Soumyaansh
- 8,626
- 7
- 45
- 45
0
votes
1 answer
Generating number sequence in verilog (automat)
I was given a task to create verilog code that generates number sequence 323135343355.
It should be generated like automat so it has states and next number in sequence is generated according to its previous output.
Task should be done in two…

SKImperator
- 11
- 1
0
votes
0 answers
Parse a dot delimited numerical hierarchy index JSON
Suppose I have a data structure in the following…

bcsantos
- 2,635
- 5
- 21
- 22
0
votes
1 answer
generating a specific sequence block of numbers in matlab
I need to generate a sequence of 8 blocks of numbers.
The block sizes can vary between 28 and 32.
The part I am stuck is that the sum of all the blocks has to be a specific number. Let's say 243.
I tried a loop block by block where the block size is…

oldflatop
- 39
- 4
0
votes
1 answer
How to get continous number from number squence when import BOM via AIF web service - AX 2012
I would like to import BOM over the standard BOM AIF Web Service in AX 2012.
In my XML-File I don't define any BOMId, because the system should take the next possible BOMId from the existing number sequence.
When I start the import of my XML-File I…

Virtrel
- 73
- 9
0
votes
1 answer
what is the *chmod* number series called?
I am struggling to find a name for the the series that file permissions in unix are represented by.
The numbers which can add up to a unique sum and no other combination of numbers from that set can add up to that unique sum.
The numbers in series…

Mohd Abdul Mujib
- 13,071
- 8
- 64
- 88
0
votes
1 answer
How to forced my PackingSlipId by code in CustPackingSlipJour?
I'm creating SalesTable and SalesLine, and after I call this function,
SalesFormLetter_PackingSlip = SalesFormLetter::construct(DocumentStatus::PackingSlip);
SalesFormLetter_PackingSlip.parmId(MYTABLE.MYPackingSlipId); …

ulisses
- 1,549
- 3
- 37
- 85
0
votes
1 answer
Not possible to Delete a record on NumberSequenceTable
I need to delete a my numberSequence.
But I have a proble, if I try to delete on Table (NumberSequenceTable) or on NumberSequenceTableListPage when code call a super delete method AX goes in loading for soo much time.
I know, it's not good question,…

ulisses
- 1,549
- 3
- 37
- 85
0
votes
2 answers
How to recover a number sequence just used ?
I have a simple question, I don't know if It's possible.
In my class I have a some methods, In one in particular I create a record in LedgerJournalTable and save the table reference in global variable _createdLedgerJournalTable.
So, in another…

ulisses
- 1,549
- 3
- 37
- 85
0
votes
1 answer
regex (java) match numbers equal or greater than 20, incremented by 5, no leading zeros allowed
I am a new user, so excuse if this question should be answered in it's original post:
regex match numbers greater or equal than 20, by increments of 5, range 20 to 999
Neverteless, here is the current question:
Match all numbers equal or greater…

Francisco Ramilo
- 97
- 10
0
votes
1 answer
AX NumberSequence: Mark a number as used
How to mark a given number as used in a NumberSequence when this number was not generated by the number sequence?
Let's consider I imported the first 10 records of a custom table and the file already specified its ID from 01 to 10,
then i want to…

Hugo Alves
- 13
- 1
- 4
0
votes
1 answer
Why do some number sequences return "000000" instead of a new number?
Since about a week, the number sequences for sales invoice numbers and vouchers return "000000" instead of the next number of the number sequence in one system.
So far I tried the following:
check manual, continous and other settings of the number…

FH-Inway
- 4,432
- 1
- 20
- 37
0
votes
0 answers
How would I track the integers and print out the following statements?
The following code is what I was able to create but now I'm confused on what to do next.
Write a program that reads a sequence of integer inputs and prints
The cumulative total of the numbers
The smallest of the inputted numbers
The largest of the…

Rahas28
- 1
0
votes
1 answer
Voucher Number Sequence according to months?
I want to update existing voucher number sequence to new one that change according to month i.e if the month is feb then number sequence should be like 02-0001. As i have researched and found that number sequence is auto generated from the wizard so…

user2870778
- 107
- 2
- 13
0
votes
2 answers
Create number sequence of length x with only difference of 1 bit in successive numbers
Was asked this Amazon Telephonic Interview Round 1
So for Length = 1
0 1 (0 1)
Length = 2
00 01 11 10 (0, 1, 3, 2)
and so on
write function for length x that returns numbers in digit(base 10) form

rishabhmonga
- 11
- 3