on 2013 Dec 13 10:46 AM
Hi,
I written the routine the code is ok but values not uploading to field so any one look in to this issue.
data:p1(02).
data:ZQUARTER type /BIC/OIZQUARTER.
p1 = SOURCE_FIELDS-calday+4(2).
if p1 = 01 or p1 = 02 or p1 = 03.
move '04' to p1.
elseif p1 = 04 or p1 = 05 or p1 = 06.
move '01' to p1.
elseif p1 = 07 or p1 = 08 or p1 = 09.
move '02' to p1.
elseif p1 = 10 or p1 = 11 or p1 = 12.
move '03' to p1.
endif.
*/BIC/ZQUARTER
* ZQUARTER = p1.
*/BIC/ZQUARTER = p1.
* RESULT = source_fields-ZQUARTER .
zquarter = p1.
Request clarification before answering.
Hi Rama,
This your feild level routine in transformation?
If yes then remove comment of result and pass required feild ie P1 to your result.it will update your mapped infoobject.
Regards,
Ganesh Bothe
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Dear Rama krishan,
Pass P1 value to RESULT.
RESULT = P1.
CLEAR : P1.
Regars, Vijay
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Rama,
RESULT = P1 should work instead of ZQUARTER = P1.
Best regards, Sascha
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
77 | |
30 | |
8 | |
8 | |
7 | |
7 | |
6 | |
5 | |
4 | |
4 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.