on 2007 Dec 28 10:12 AM
plz let me know why this select query is not picking up the value..
SELECT RRP_TYPE
HEUR_ID
WHATBOM
FIXHZ
FROM /SAPAPO/MATLOC
INTO CORRESPONDING FIELDS OF TABLE I_TABLE
WHERE MATID = I_TABLE_MATID AND
LOCID = I_TABLE_LOCID.
Internal table i_table has a table type /SAPAPO/MATLOC_TAB which in turn has a line type /SAPAPO/MATLOC
Parameters i_table_matid & i_table_locid has a value in debugging mode.
Table /sapapo/matloc has data for this input.
Request clarification before answering.
Hi use this code before using the select statement.
call function 'CONVERSION_EXIT_ALPHA_INPUT'
exporting
input = I_TABLE_MATID
importing
output = I_TABLE_MATID .
call function 'CONVERSION_EXIT_ALPHA_INPUT'
exporting
input = I_TABLE_LOCID
importing
output = I_TABLE_LOCID.
Hope this helps.
Reward if helpful.
Regards,
Kalyan.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Help me in this query..
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Conversion exits were not working out..
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
Try the code with Transaction SE30.
Steps:
1. Call transaction SE30.
2. Go to Tips&Tricks
3. Paste your code there
4. Try executing
Regards,
RM
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
One reason could be there is a conversion exit for either MATID or LOCID; in that case your input parameter(s) have to be converted before executing the SELECT.
Regards,
John.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Probably u shud use Conversion Exits while passing the values into the Query.
Awrd Points if useful
Bhupal
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
8 | |
5 | |
3 | |
1 | |
1 | |
1 | |
1 | |
1 | |
1 | |
1 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.