2014 Feb 06 6:58 AM
Hi,
I am developing a function module in that function module i need to retrieve data and fill into 3600 table parameters (1. 1200 of one type work area 2. 1200 of 1 type internal table taht is a table type . 3. 1200 of 1 type that is a table type). A function module doesn,t allow this number of parameters.
Any way to do it .
Regards,
Durga.
2014 Feb 06 7:00 AM
2014 Feb 06 12:33 PM
Hi,
2400 are internal table (which is a table type i need to return it throughs tables).
1200 are work area (which is a struture type)
2014 Feb 06 1:23 PM
Looks like some crazy requirement, if possible please share what you want to do, so we can suggest some other way for the same.
2014 Feb 06 7:00 AM
Hi,
3600 table parameters?
What is this requirement? Can you elaborate?
Regards
Abhi
2014 Feb 06 7:06 AM
Hi,
Can you explain your Requirement in detail ???
Rgds,
Vijay SR
2014 Feb 06 7:15 AM
2014 Feb 06 7:51 AM
2014 Feb 06 12:39 PM
Hi Thomos,
In previous issue i combined 225 work are in 15 internal table after that my problem was solved.
Actually doesn't allow more than 28KB parameters.
In my current requirement size is exceeding so much that why i am not able to do it .
Regards,
Durga.
2014 Feb 06 1:09 PM
Please make it a habit to close your questions properly, e.g. by posting the solution that you found yourself. Others may benefit that are looking for help like you now.
This huge amount of parameters still looks completely strange to me, there might be a better way to solve this if you would just disclose what your actual task is.
Thomas
2014 Feb 06 1:15 PM
Export to memory or database INDX can be used to store parameters.
FM would then import the data and continue processing.
2014 Feb 06 9:03 AM
2014 Feb 07 5:44 AM
HI Durga,
Append structures containing fields to a particular structure. So you can include a lot of fields of structures in a particular structure.
Hence you can increase the number of parameters in the FM.
Regards