2007 Dec 24 11:57 AM
Hi All,
How can we find the memory ID which stores PERNR field.
The LDB Used id PNPCE.
Regards,
Vidya.
2007 Dec 24 12:01 PM
2007 Dec 24 12:01 PM
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
2007 Dec 26 6:03 AM
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.
2007 Dec 26 6:11 AM
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,
2007 Dec 24 12:02 PM
Hi,
Memory id is :: PER.
Regds
Parvathi
Please reward poiints if helpful...
2007 Dec 26 6:08 AM
go to data element of that field
go to the Tab ' furtehr characterstics'
it will display as parameter ID
2008 Jan 09 4:58 AM
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.