hi experts
iam doing bdc to update a long text for qp02 tcode inspection characterstic
the follwoing is the itab for long test
DATA: BEGIN OF itext OCCURS 0,
vornr LIKE plpo-vornr,
merknr LIKE plmk-merknr,
long1(72) TYPE c,
long2(72) TYPE c,
long3(72) TYPE c,
long4(72) TYPE c,
long5(72) TYPE c,
long6(72) TYPE c,
long7(72) TYPE c,
long8(72) TYPE c,
long9(72) TYPE c,
long10(72) TYPE c,
END OF itext.
i had moved all long text from file to itext
my bdc ..
loop at itab.
perform
"
"
loop at ioperation
perform
perform
loop at ichr where vornr = ioperation vornr. (Characterstic table)
perfrom ---some fields
*****
read table itext with key vornr = ichr-vornr
merknr = ichr-merknr.
perform .
long-text.
endloop.
endloop.
as iam reading it it picks all longtext for the givem condition.
as iam having same operation and charcaterstic for different matnr
it picks all .and after perfrming one matnr it dispalys the content other matnr in the first matnr.
any other way to modify text .
will be thankfull
and points will be awarded