cancel
Showing results for 
Search instead for 
Did you mean: 

Local Deployment of NW mobile 7.1 application

Former Member
0 Kudos

I am currently developing a NW mobile 7.1 application (I am new to NW mobile), following the documentation in http://help.sap.com/saphelp_nwmobile71/helpdata/en/8F/0B674240449C60E10000000A1550B0/frameset.htm respectively the help in the NWDS (docus are identical). When I come to step 'Deployment' (see http://help.sap.com/saphelp_nwmobile71/helpdata/en/8F/0B674240449C60E10000000A1550B0/frameset.htm), when clicking on 'Deploy' on the application in the NWDS, an error pop up appears with message 'Enter version Number'. There are two empty input fields 'Application Name :' and 'Version number', but both fields are disabled. Of the two buttons in the pop up, 'Finish' is disabled, so only 'Cancel' can be pressed, no more info is given. Does anybody know where to set the version number?

Best regards,

Jochen

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Hi Jochen,

Go to <project>\MOBILE-INF and open Mcd.xml in text editor.

Check whether the values these 2 tags are present or not, if not fill them up and do a clean build.

<mcd_name>testapp</mcd_name>

<mcd_version>1.0</mcd_version>

Hope this helps.

Best Regards,

Amit

Former Member
0 Kudos

Hi Jochen,

how you have deployed the application on DOE. I am getting error message as Error in installation when i am assigning the MCD to my device.

Thanks & Regards

Devendra

Former Member
0 Kudos

HI,

I guess you are trying a server deployment..

After the SDA is uploaded to DOE , then the status of the MCD has to be changed to 'MCD successfully tested' before assigning to devices.

Is there any dump generated in ST22 while assigning MCD to the device ?

Regards,

Liji

Former Member
0 Kudos

Hi Liji,

Runtime Errors UNCAUGHT_EXCEPTION

Exception CX_WD_MODEL_TEXT

Date and Time 14.05.2010 03:07:49

-


-


Short text

An exception occurred that was not caught.

-


-


What happened?

The exception 'CX_WD_MODEL_TEXT' was raised, but it was not caught anywhere

along

the call hierarchy.

Since exceptions represent error situations and this error was not

adequately responded to, the running ABAP program

'CL_WD_COMPONENT_ASSISTANCE====CP' has to be

terminated.

-


-


Error analysis

An exception occurred which is explained in detail below.

The exception, which is assigned to class 'CX_WD_MODEL_TEXT', was not caught

and

therefore caused a runtime error.

The reason for the exception is:

Text 529 Not Found

-


-


How to correct the error

You may able to find an interim solution to the problem

in the SAP note system. If you have access to the note system yourself,

please use the following search criteria:

"UNCAUGHT_EXCEPTION" "CX_WD_MODEL_TEXT"

"CL_WD_COMPONENT_ASSISTANCE====CP" bzw.

"CL_WD_COMPONENT_ASSISTANCE====CM003"

"IF_WD_COMPONENT_ASSISTANCE~GET_TEXT"

If you cannot solve the problem yourself, please send the

following documents to SAP:

|

Patch level. 177

Patch text.. " "

Database............. "MaxDB 7.6, MaxDB 7.7"

SAP database version. 710

Operating system..... "Windows NT 5.0, Windows NT 5.1, Windows NT 5.2, Windows

NT 6.0, Windows NT 6.1"

Memory consumption

Roll.... 16192

EM...... 20949120

Heap.... 0

Page.... 16384

MM Used. 16322224

MM Free. 4623360

-


-


User and Transaction

Client.............. 100

Transaction ID...... "D03F5FDFA5E3F151A430005056A17607"

Program............. "CL_WD_COMPONENT_ASSISTANCE====CP"

Screen.............. "SAPMHTTP 0010"

Screen Line......... 2

Debugger Active..... "none"

|

-


-


Information on where terminated

Termination occurred in the ABAP program "CL_WD_COMPONENT_ASSISTANCE====CP" -

in "IF_WD_COMPONENT_ASSISTANCE~GET_TEXT".

The main program was "SAPMHTTP ".

In the source code you have the termination point in line 29

of the (Include) program "CL_WD_COMPONENT_ASSISTANCE====CM003".

-


-


Source Code Extract

-


Line

SourceCde

-


1

METHOD if_wd_component_assistance~get_text.

2

FIELD-SYMBOLS: <t> TYPE textpool.

3

4

IF wd_text_cache IS INITIAL.

5

me->load_texts( ).

6

ENDIF.

7

READ TABLE wd_text_cache ASSIGNING <t> WITH TABLE KEY id = 'I' key = key .

8

IF sy-subrc = 0.

9

text = <t>-entry.

10

else.

11

if last_loaded_lang is initial and lang_list is initial.

12

create_lang_list( ).

13

endif.

14

  • try to read in other languages

15

while last_loaded_lang < 90.

16

load_next_language( ).

17

READ TABLE wd_text_cache ASSIGNING <t> WITH TABLE KEY id = 'I' key = key .

18

IF sy-subrc = 0.

19

text = <t>-entry.

20

exit.

21

endif.

22

endwhile.

23

if <t> is not assigned.

24

IF me->not_found_key IS NOT INITIAL.

25

READ TABLE wd_text_cache ASSIGNING <t> WITH TABLE KEY id = 'I' key = me->not_found_k

26

text = <t>-entry.

27

RETURN.

28

ELSE.

>>>>>

RAISE EXCEPTION TYPE cx_wd_model_text EXPORTING key = key.

30

ENDIF.

31

endif.

32

endif.

33

IF text CA '&'.

34

IF para1 IS SUPPLIED.

35

REPLACE ALL OCCURRENCES OF '&PARA1&' IN text WITH para1.

36

IF para2 IS SUPPLIED.

0

0

CL_WD_BUSINESS_GRAPHICS=>E_CHART_TYPE+8(4)

???

??????

??????

ME->WD_ASSIST

3000C000

60009700

LV_TEXT

WA_MSG

MSG_TBL

Table[initial]

SCREEN

2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-


No. 13 Ty. METHOD

Name CLF_DEVICE_MGMT_VIEW_CTR=>IF_WDR_VIEW_DELEGATE~WD_INVOKE_EVENT_HANDLER

Regards

Devendra

Former Member
0 Kudos

Hi Liji,

We have changed the status of MCD after SDA file deployment.Please find part of error log from ST22 in above thread.

Thanks & Regards

Devendra

Former Member
0 Kudos

Hi,

how do you deploy the mobile application from NWDS ?

with NWDI?

Best regards,

Alessandro.

Former Member
0 Kudos

Found the problem.