‎2010 Oct 24 4:46 AM
Hi Friends,
I have problem when query data between mbew and ckmlcr..
select ckmlcrpoper mbewlfmon into table it from ckmlcr join mbew on (ckmlcrkalnr eq mbewkaln1 and ckmlcrpoper eq mbewlfmon ).
This query return subrc 4(no record found).But if I remove ckmlcrpoper eq mbewlfmon then subrc = 0 and get records.
But problem is I can see same values for ckmlcrpoper and mbewlfmon.But only think is poper is numc(3) and lfmon is numc(2).I can see poper = u2018010u2019 and lfmon = u201810u2019.
I donu2019t know how to solve this issue.Please help me <removed by moderator>
Thanks all...
Regards,
Kumar
Edited by: Thomas Zloch on Oct 24, 2010 8:53 PM
‎2010 Oct 24 4:09 PM
This query return subrc 4(no record found).But if I remove ckmlcrpoper eq mbewlfmon then subrc = 0 and get records.-> use this condition for selection and then reove the unwanbted records using loop.
‎2010 Oct 24 4:09 PM
This query return subrc 4(no record found).But if I remove ckmlcrpoper eq mbewlfmon then subrc = 0 and get records.-> use this condition for selection and then reove the unwanbted records using loop.
‎2010 Oct 24 6:02 PM
Hi,
saving memory without loosing performance you can use
SELECT ... INTO CORRESPONDING FIELDS OF <structure> ...
CHECK <structure>-poper+1 eq <structure>-lfmon ).
APPEND <structure> to <table>.
ENDSELECT.Regards,
Clemens
‎2010 Oct 26 4:02 PM
Hi Friends,
Thanks for your reply.Due to deadline,I changed program logic and move all related data into different internal table and by compare/modify internal table data,I solved this issue.Thanks again.
Regards
Kumaran
‎2010 Oct 26 4:23 PM
Moderator message - Please assign po1nts to helpful answers and mark your question as solved Rob
‎2010 Oct 29 10:59 AM
Hi Friends,
I spilit queries into simple queries and moved to many internal tables and finaly filter internal table based on my requirement.Thank you...
Regards,
Kumaran..