‎2007 May 02 8:49 AM
Hi
when i give the enter button iam getting this error.
Requested function BSTA is not available here.
why iam getting this error help me.
regards,
sivakumar
‎2007 May 02 9:15 AM
Please provide more detail. Which transaction? What exactly are you trying to do? Click on the question mark on the message. What is the message class/number?
‎2007 May 02 10:00 AM
Hi
The tcode is VK11 creating condition record when i create a record in currency (unit) iam getting as USD but i should change as USDN so that iam display error the code :
method IF_EX_SD_COND_SAVE_A~CONDITION_SAVE_EXIT .
DATA : WA LIKE LINE OF CT_KONPDB_NEW.
if CT_KONH_NEW[] is not initial.
endif.
*Added by sivakumar on 05-01-2007
if CT_KONPDB_NEW[] is not initial.
endif.
LOOP AT CT_KONPDB_NEW INTO WA.
IF WA-KONWA NE 'USDN'.
MESSAGE E021(zc) WITH 'Modify Unit Price from USD to USDN'.
ENDIF.
ENDLOOP.
*end.
endmethod.
this the code when i save the record if it is USD it display error and if it is USDN it will save the record.
when i get the error the screen get disabled if i enter or press enter button on the top it should be enable when i press iam getting error :
error:
Requested function BSTA is not available here.
i should not get the error it should be enabled.
help me.
regards,
sivakumar
‎2007 May 02 5:14 PM