cancel
Showing results for 
Search instead for 
Did you mean: 

Lead's buffer

Former Member
0 Kudos

Hi Experts,

Can you give me one FM that stores Lead creation's buffer?

Email action was triggered during save, causing some smartform's processing class and method not populated - Creation date, time and long text.

Thanks

Accepted Solutions (0)

Answers (1)

Answers (1)

johan_vanzijl
Participant
0 Kudos

Hi

CRM_ORDER_READ is probably the best to read the additional segments you need.

Couple of things though. Created date and time you will find on the ORDERADM_H structure. If it is a new lead, these may not have been populated yet. You could maybe check if ORDERADM_H-MODE = 'A'. This should indicate you are in create mode, in that case just print system date and time(created date might be populated later in the save cycle, have not verified it).

The texts aren't always retrieved by default, you probably have to append the value 'TEXTS' to the parameter IT_REQUESTED_OBJECTS.

Regards

Johan

johan_vanzijl
Participant
0 Kudos

Sorry, one last thing.

I would probably not use created date and time, but rather retrieve the dates out of the date set. In this case what the user sees on the screen would be the same as what appears in the form.

Former Member
0 Kudos

Can you also explain how I can best retrieve the date from date set?

I need the information in my smartform... Thanks