cancel
Showing results for 
Search instead for 
Did you mean: 

Field symbol has not yet been assigned in BW3.5 PRD system

Former Member
0 Kudos

hi .

when i use a End User ID to run a workbook, system dump as follow:

Runtime Error GETWA_NOT_ASSIGNED

Date and Time 2008.04.09 15:52:39

ShrtText

Field symbol has not yet been assigned.

What happened?

Error in ABAP application program.

The current ABAP program "SAPLRSSHIER" had to be terminated because one of the

statements could not be executed.

This is probably due to an error in the ABAP program.

What can you do?

Print out the error message (using the "Print" function)

and make a note of the actions and input that caused the

error.

To resolve the problem, contact your SAP system administrator.

You can use transaction ST22 (ABAP Dump Analysis) to view and administer

termination messages, especially those beyond their normal deletion

date.

is especially useful if you want to keep a particular message.

Error analysis

You attempted to access an unassigned field symbol

(data segment 32772).

This error may occur for any of the following reasons:

- You address a typed field symbol before it is set using ASSIGN

- You address a field symbol that points to a line in an internal table

that has been deleted

- You address a field symbol that had previously been reset using

UNASSIGN, or that pointed to a local field that no longer exists

- You address a global function interface parameter, even

though the relevant function module is not active,

that is it is not in the list of active calls. You can get the list

of active calls from the this short dump.

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,

use the following search criteria:

-


"GETWA_NOT_ASSIGNED" C

"SAPLRSSHIER" or "LRSSHIERU01"

"EXPAND_SINGLE_LINKNODE_TIME"

-


If you cannot solve the problem yourself and you wish to send

an error message to SAP, include the following documents:

1. A printout of the problem description (short dump)

To obtain this, select in the current display "System->List->

Save->Local File (unconverted)".

2. A suitable printout of the system log

To obtain this, call the system log through transaction SM21.

Limit the time interval to 10 minutes before and 5 minutes

after the short dump. In the display, then select the function

"System->List->Save->Local File (unconverted)".

3. If the programs are your own programs or modified SAP programs,

supply the source code.

To do this, select the Editor function "Further Utilities->

Upload/Download->Download".

4. Details regarding the conditions under which the error occurred

or which actions and input led to the error.

System environment

SAP Release.............. "640"

Application server....... "BWPRDCI"

Network address.......... "10.68.106.228"

Operating system......... "AIX"

Release.................. "5.3"

Hardware type............ "00CF5A9F4C00"

Character length......... 16 Bits

Pointer length........... 64 Bits

Work process number...... 0

Short dump setting....... "full"

Database server.......... "BWPRD02"

Database type............ "ORACLE"

Database name............ "P11"

Database owner........... "SAPP11"

Character set............ "C"

SAP kernel............... "640"

Created on............... "Jan 18 2006 20:47:39"

Created in............... "AIX 1 5 00538A4A4C00"

Database version......... "OCI_920 "

Patch level.............. "109"

Patch text............... " "

Supported environment....

Database................. "ORACLE 9.2.0.., ORACLE 10.1.0.., ORACLE

10.2.0.."

SAP database version..... "640"

Operating system......... "AIX 1 5, AIX 2 5, AIX 3 5"

Memory usage.............

Roll..................... 16192

EM....................... 8379712

Heap..................... 0

Page..................... 16384

MM Used.................. 5621776

MM Free.................. 2755144

SAP Release.............. "640"

User and Transaction

Information on where terminated

The termination occurred in the ABAP program "SAPLRSSHIER" in

"EXPAND_SINGLE_LINKNODE_TIME".

The main program was "SAPMSSY1 ".

The termination occurred in line 908 of the source code of the (Include)

program "LRSSHIERU01"

of the source code of program "LRSSHIERU01" (when calling the editor 9080).

Source Code Extract

Line SourceCde

878 * --> L_S_RSNODES_LNK_HELP *

879 * --> C_MAX_NODEID *

880 * --> C_CHANGING_INDEX *

881 ----


882 FORM expand_single_linknode_time

883 USING i_s_rsnodes_lnk_help TYPE rssh_s_timersnode

884 CHANGING c_max_nodeid TYPE rshi_s_hienode-nodeid

885 c_changing_index TYPE sy-tabix.

886

887 DATA: l_s_rsnodes_lnk_help TYPE rssh_s_timersnode,

888 l_s_node_help TYPE rssh_s_timersnode,

889 l_t_rsnodes_lnk_help TYPE rssh_s_timersnode OCCURS 0,

890 l_s_rsnodes_lnk TYPE rshi_s_hienode,

891 l_index TYPE sy-tabix.

892

893 FIELD-SYMBOLS: <l_s_hienode_org> TYPE rssh_s_timersnode,

894 <l_s_hienode_org_child> TYPE rssh_s_timersnode.

895

896 l_s_rsnodes_lnk_help = i_s_rsnodes_lnk_help .

897 l_index = c_changing_index.

898

899

900 * get original node

901 READ TABLE g_th_timersnode ASSIGNING <l_s_hienode_org>

902 WITH KEY nodename = l_s_rsnodes_lnk_help-nodename

903 iobjnm = l_s_rsnodes_lnk_help-iobjnm

904 dateto = l_s_rsnodes_lnk_help-dateto

905 link = rs_c_false.

906

907 * check if node has been visited

>>>>> IF <l_s_hienode_org>-visitedflg = rs_c_true.

909 MESSAGE e220 WITH l_s_rsnodes_lnk_help-nodename

910 l_s_rsnodes_lnk_help-nodeid

911 RAISING linknode_circle.

912 ENDIF.

913

914 * node is visited

915 <l_s_hienode_org>-visitedflg = rs_c_true.

916

917 IF NOT <l_s_hienode_org>-childid IS INITIAL.

918

919 * get child of original

920 READ TABLE g_th_timersnode ASSIGNING <l_s_hienode_org_child>

921 WITH TABLE KEY nodeid = <l_s_hienode_org>-childid.

922 IF sy-subrc = 0. "child exists

923 * get child that is valid for i_date "p19mtu130300 note206267

924 PERFORM get_next_node

925 USING i_date

926 <l_s_hienode_org_child>

927 CHANGING l_s_node_help.

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hello,

Plase find the below s link which may help u...

Many SAP Notes are there which may solve ur issue...

https://www.sdn.sap.com/irj/sdn/advancedsearch?cat=sdn_all&query=getwa_not_assigned&adv=false&sortby...

Former Member
0 Kudos

can anyone give some valuable suggestion? thanks a lot!