‎2009 Dec 09 5:21 AM
Dear Exparts.
please see the Query:
select country city1 from adrc
into CORRESPONDING FIELDS OF wa_country
where
country = p_country
and
city1 = p_city.
append wa_country to it_country.
endselect.
In this selection, when I send p_country = AE and p_city = Dubai I cannot get any data. But there have data In DB.
But when I send p_country = DE and p_city = Berlin I can get porper data.
Can anybody solve this problem.
Your regards
rayhan
‎2009 Dec 09 5:34 AM
CITY1 is case sensitive Field. Check your selection Screen entry and DB Table entry.
Kanagaraja L
‎2009 Dec 09 5:40 AM
Dear, I copy the value form DB then pest on P_city but problem is still.
other hand Ifound data for Berlin but notfound Dubai.
pls try to Understand.
Your regards
Rayhan
‎2009 Dec 09 5:51 AM
Just paste the below code and check either getting value or not
DATA wa_country TYPE adrc.
PARAMETERS: p_city TYPE adrc-city1 DEFAULT 'Dubai',
p_countr TYPE adrc-country DEFAULT 'AE'.
SELECT SINGLE * FROM adrc INTO wa_country WHERE country = p_countr
AND city1 = p_city.
IF sy-subrc = 0.
WRITE : / wa_country-city1, / wa_country-country.
ENDIF.Kanagaraja L
‎2009 Dec 09 6:16 AM
Thanks For solution.
It work properly in SE38.
But I want to show data in smartfrom.
I done as follows...
Take 2 import parameter in fprm interface as
P_country type land1
p_city type ad_city1.
then write the query in global defination-initalization.
Then take a table in main window and display data.
Pls try to understand
I found data when I send P-country= DE,P_city = Berlin
But not found for AE and Dubai.
Best Regards
Rayhan
‎2009 Dec 09 8:36 AM
Your select qry is not working properly, Check the same entries in SE16 aacording that chnage your SQL statement.
Kanagaraja L
‎2009 Dec 09 10:59 PM
Check whether the data is existing in DB datable or not..
Indra...
‎2009 Dec 09 5:50 AM
How you have defined p_country is it same as country in adrc or not.
Atul
‎2009 Dec 09 6:02 AM
Dear,
I define p_country as like as ADRC COUNTRY.
ADRC -COUNTRY 's data element is LAND1.
So I define p_country as LAND1.
your regards
Rayhan
‎2009 Dec 09 6:08 AM
check the data if it supports
country = p_country
and
city1 = p_city.
does the data your are checking have AE and Dubai in table entries?
‎2009 Dec 09 11:17 PM
Hi ,
Your select query is fine , records extracted needed to be passed to smartform and this is not going proper.
Take help on smartform, search SDN.
‎2010 Nov 22 5:47 AM