|
%kds - number of keys to use has to be a constantdiffering
%dec - length and decimal positions have to be constants
%editc - edit code has to be constant
I'm working with amounts that I'm writing to XML. They can have
decimal precision based on the client processed. I thought, wonderful,I
can create a procedure, pass in some parameters, and simply insert thoseeasy.
parms into a statement to format my return value. If only it were so
But why isn't it? What is the purpose of making BIF parms requiringbe
constant values? Where is the flexibility in that? I suppose it may
easier on the RPG developers, but is it better for the language?only
Info about my example. Amounts are already rounded to the needed
precision. Also, we go out to 6 decimals, I cut the example down to
going out to two decimals.EditCode:
So in my example, instead of being able to code:
rtnAmount = %trim( %editC( %dec( Amount: LEN_Amount: w_DecPos ):
*CurSym);
I have to code:
20983 Select;
20983 When w_DecPos = 0;
20983 Amt0Dec = Amount;
20983 Select;
20983 When EditCode = 'A';
20983 rtnAmount = %trim( %editc( Amt0Dec: 'A': *CURSYM ) );
20983 When EditCode = 'B';
20983 rtnAmount = %trim( %editc( Amt0Dec: 'B': *CURSYM ) );
20983 EndSl;
20983 When w_DecPos = 1;
20983 Amt1Dec = Amount;
20983 Select;
20983 When EditCode = 'A';
20983 rtnAmount = %trim( %editc( Amt1Dec: 'A': *CURSYM ) );
20983 When EditCode = 'B';
20983 rtnAmount = %trim( %editc( Amt1Dec: 'B': *CURSYM ) );
20983 EndSl;
20983 When w_DecPos = 2;
20983 Amt2Dec = Amount;
20983 Select;
20983 When EditCode = 'A';
20983 rtnAmount = %trim( %editc( Amt2Dec: 'A': *CURSYM ) );
20983 When EditCode = 'B';
20983 rtnAmount = %trim( %editc( Amt2Dec: 'B': *CURSYM ) );
20983 EndSl;
20983 EndSl;
If I'm missing something and there's an easier way to do what I'm doing,
please let me know.
Thanks,
Kurt Anderson
Sr. Programmer/Analyst
CustomCall Data Systems
Madison, WI
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.