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 get the Status bar information

Former Member
0 Kudos

hi guruz,

I creating a customer using tcode:xd01. finally in the status bar below of XD01 , i am getting the customer number in the status bar . i have to pass the same customer number to the tcode: FD32 of field Customer.

how this can be done.

your answers are rewarded.

regards

vinoth.v

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

u cant get that directly instead go to abap dictionary

tcode : se16

enter table name : kna1

get the customer code there.......

Reward if usefull

3 REPLIES 3

Former Member
0 Kudos

Hi,

u cant get that directly instead go to abap dictionary

tcode : se16

enter table name : kna1

get the customer code there.......

Reward if usefull

Former Member
0 Kudos

use like that

data: it_tab2 type table of bdcmsgcoll with header line.

call transaction 'XD01' using it_tab3 mode 'A' messages into it_tab2.

and in it_tab2-msgv1 u will have the no generated

u can see the contents of bdcmsgcoll by debugging ur code and all the values will come in your table when u use " messages into " with call transaction then you can use the information according to your requirement.

do reward

Edited by: Ashish Paliwal on Apr 7, 2008 2:08 PM

LeonvNiekerk
Explorer
0 Kudos

use class cl_last_message_info to obtain last message in status bar