cancel
Showing results for 
Search instead for 
Did you mean: 

Error In the Production but perfect in the developement

Former Member
0 Kudos

Hello Friends,

i have modified an Script and after doing all the required changes i released it to production, its giving error as '' FORM_NAME NOT ACTIVE and NO ERRORS FOUND". But that script is working perfectly in Development.

i am unable to understand what is the problem,

Mukesh

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

hi,

if u r using :

call function module'\00000123' some thing like this then it might be posiible the function module generated in prod is different from dev, try using :

Look at SAP Smart Forms (BC-SRV-SCR)

Sample :

CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'

EXPORTING

formname = '<form name>'

IMPORTING

fm_name = fm_name

EXCEPTIONS

no_form = 1

no_function_module = 2

OTHERS = 3.

IF sy-subrc <> 0.

  • <error handling>

ENDIF.

CALL FUNCTION fm_name

EXPORTING

  • ARCHIVE_INDEX =

  • ARCHIVE_PARAMETERS =

  • CONTROL_PARAMETERS =

  • MAIL_APPL_OBJ =

  • MAIL_RECIPIENT =

  • MAIL_SENDER =

  • OUTPUT_OPTIONS =

  • USER_SETTINGS = 'X'

g_carrid = <variable>

g_connid = <variable>

g_fldate = <variable>

  • IMPORTING

  • DOCUMENT_OUTPUT_INFO =

  • JOB_OUTPUT_INFO =

  • JOB_OUTPUT_OPTIONS =

TABLES

gt_sbook = <internal table>

EXCEPTIONS

formatting_error = 1

internal_error = 2

send_error = 3

user_canceled = 4

OTHERS = 5.

IF sy-subrc <> 0.

  • <error handling>

ENDIF.

regards.

reward points if it helps

Answers (4)

Answers (4)

Former Member
0 Kudos
Former Member
0 Kudos

Hello Friends,

as said i released the script again, and checked the attributes, in Production the <b>Changed on by</b><b> DDIC</b> ,

But in developement the Changed on By 'mukesh'.

i have released this object 3 times to the production but same problem....

i donot have authorization to activate in the production

what to do

Mukesh Kumar M

Former Member
0 Kudos

Hi

I'm not saying to activate in production but after transporting your request is done completely check whehter it has done with 0 errors or not

goto tcode SE09

Click on the check box <b>Released</b>and then goto display and check your request number and doubel click on that particular request number and then press F6 or click on <b>Transport Logs</b> and then u will get the related transport logs where u can find the error status whether it has been transported with 0 error or not??

Regards

Pavan

Former Member
0 Kudos

Hi Mukesh

Welcome to SDN Community

Do one thing Activate again in development check for all inconsistencies and then check the output also there it self again and then send it to Quality while transporting check whether all the components have been transported with 0 error or not and thenc heck it there if it is workign fine then no doubtedly u can transport that to your productionsystem

Regards

Pavan

former_member196280
Active Contributor
0 Kudos

I guess your transport not moved correctly to production... check the form attributes in production are similar to development are not.

try to create a new transport request and move it to production.

close the thread once your question is answered.

Regards,

SaiRam