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 separate the PRno and PRitem

Former Member
0 Kudos

hi experts,

i m working on stxh table,in this table a field name

''Text Name = 001000198700010" IS EXISTING ,here prno and pr item both are attached ,i want to separate both ,what logic sud i use............

3 REPLIES 3

Former Member
0 Kudos

Hi

First 10 characters are PR number = 0010001987

next 5 digits are Item no = 00100

reward if useful

regards,

Anji

Former Member
0 Kudos

data: prno(10),

pritem(5).

prno = text+0(10).

pritem = text+10(5).

Former Member
0 Kudos

data: prno(10),

pritem(5).

prno = text+0(10).

pritem = text+10(5).