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

help for module

Former Member
0 Likes
801

Hello

Frnd

i had two fields in database name created by with datatype number and created on with datatype date

i want that in these value automatically be show as current client and current date

in module pool they r two input output box

Hope u people got my problem

Please tell me wat to do

I m new in this

With Best Regards

ruby

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
781

Hi

Use system variable SY-MANDT and SY-DATUM to display current client number and current date.

Hope this will help

Regards

shibino

6 REPLIES 6
Read only

Former Member
0 Likes
781

Hi,

Get the data from table, declare fields in module pool and in PBO assign that data to the fields.

Reward if useful!

Read only

Former Member
0 Likes
781

Hi,

While Declaring give Default values for that fields.

Data : client like SY-MANDT default SY-MANDT,

date like sy-datum default sy-datum.

Regards,

Padmam.

Read only

0 Likes
781

friend

i used this and declare these

Now i want that client value should go to field which had the name creby in zab

zab table name

creby field name

now in PAI

with the openingof screen

creby input output box cuurent cleint should be the value

i had done

zab-creby = client.

but its not working

How?

With Best Regards

Ruby

Read only

0 Likes
781

got it

thanx

with best regards

ruby

Read only

Former Member
0 Likes
782

Hi

Use system variable SY-MANDT and SY-DATUM to display current client number and current date.

Hope this will help

Regards

shibino

Read only

Former Member
0 Likes
781

load-of-propgram.

client = sy-mandt.

date = sy-datum.