Application Development and Automation 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: 
Read only

About fumction module

Former Member
0 Likes
687

i am using the fun mod 'CTWUL_CHARACT_USAGE' and i need to pass the values like

CHARACT_NAME = 'TANK_SERIAL_NUM',

CHARCT_VALUE = MCH1-CHARG ,

CLASS_TYPE = '023',

CLASSIFICATION = 'X',

Retrieved batch numbers are in ET_CLASSIFICATION-OBJEK1_INTERNAL+18(10) (Offest 18 characters and read next 10 characters)

how to catch the batch no.

how to define in data

can anyone help me out

r

i am using the fun mod 'CTWUL_CHARACT_USAGE' and i need to pass the values like

CHARACT_NAME = 'TANK_SERIAL_NUM',

CHARCT_VALUE = MCH1-CHARG ,

CLASS_TYPE = '023',

CLASSIFICATION = 'X',

Retrieved batch numbers are in ET_CLASSIFICATION-OBJEK1_INTERNAL+18(10) (Offest 18 characters and read next 10 characters)

how to catch the batch no.

how to define in data

can anyone help me out

r

4 REPLIES 4
Read only

Former Member
0 Likes
642

Hi Raju ,

Declare the data value

data : material(10) type c.

loop at ET_CLASSIFICATION

material = OBJEK1_INTERNAL+18(10).

endloop

you will get the value of batch numbers

Please award if useful

Read only

0 Likes
642

hi yar

thanks alot.

it helped me alot.

i want to award u, but i dont know how to do that .

could u plz help me out.

and do u know how to inner join tables

raju

Read only

0 Likes
642

Hello Raju,

Inner Joins - U can join two or more database tables via inner join...basically it would extract data from both tables where the fields are equal as mentioned in the join condition.

Example :

SELECT amatnr cwerks into table itab

from mara as a inner join marc as c

on amatnr = cmatnr

where a~matnr in s_matnr.

Here it fetches data from mara and marc table. The tables are joined on the field material number matnr.

As for points..if you have posted the topic as question there would be icons(stars with different colors) on the left of the topic to assign points...

yellow - helpful answer

green - very helpful answer

blue - solved problem.

Read only

0 Likes
642

ok thanku..

i given u the points

and i have posted my inner joins problem. can u solve it

raju