Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

How to get the memory ID for PERNR.

Former Member
0 Kudos
503

Hi All,

How can we find the memory ID which stores PERNR field.

The LDB Used id PNPCE.

Regards,

Vidya.

7 REPLIES 7

Former Member
0 Kudos
169

memory id of pernr is PER.

Former Member
0 Kudos
169

Hi,

I didn't get your question.

You can simply use IMPORT TO MEMORY ID key and then EXPORT TO MEMORY ID key where you can put any text in 'key' .

Regards,

Pankaj

0 Kudos
169

Hi,

The program RPCIPE00 was using the LDB PNP and the Memory ID name which was storing the PERNR was

(RPCIPE00)PERNR-PERNR in version 4.6C.

Now in ECC 6.0 the program RPCIPE00 used the LDB PNPCE and the memory ID is not (RPCIPE00)PERNR-PERNR .

So can you please help me how to find the Memory id in new system.

The statememt which was used in old system was

assign ((RPCIPE00)PERNR-PERNR) to <FS>.

In old system this statement used to pass Employee Number to <FS> . now the employee number is not getting passed.

Regards,

Vidya.

0 Kudos
169

Check the example program below.

Program 1

report zrep_0001.

data: itab type table of string with header line.

field-symbols: <fs> type table.

itab = 'This is the line 1'. append itab.

itab = 'This is the line 2'. append itab.

assign itab[] to <fs>.

export <fs> to memory id 'Zreport'.

submit zrep0002 and return.

Program 2

REPORT ZRep0002 .

data: itab type table of string with header line.

field-symbols: <fs> type table.

data: wa type string.

assign itab[] to <fs>.

import <fs> from memory id 'Zreport'.

loop at <fs> into wa.

write:/ wa.

endloop.

Regards,

Former Member
0 Kudos
169

Hi,

Memory id is :: PER.

Regds

Parvathi

Please reward poiints if helpful...

Former Member
0 Kudos
169

go to data element of that field

go to the Tab ' furtehr characterstics'

it will display as parameter ID

Former Member
0 Kudos
169

The ID wiill be (PROGRAMNAME)-person-all_pernrs. This is a table and perner is one of the field in this field. Got pernr from here.

Regards,

Vidya Bhushan.