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

workflow object enquiry

Former Member
0 Likes
305

Hello,

Can anyone tell me how to display customer classification screen (XD02>extras>Classification)for a particular customer as work item in sap inbox.

Which object i need to use...?

I tried BUS3060 and BUS1088 iam not able to display that screen.

Thanks,

Larry

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
282

Hi Larry,

using the classification itself might be a little too complex. I suspect you would like to have an object link in the bottem right box and when you klick on it the customer's classification shall be shown in a new window?

A pragmatic solution goes like this:

Transactio swo1, enter KNA1, click "Create SubType".

Fill in the new Subtype starting with Z and name it "CustomerClassification" or something useful.

Then create a new Method "DisplayClassification" with no parameters and such.

Within the object's method coding you can use the field object-key-customerNo to adress the current customer number.

Display the classifcation by just execution XD02 with a batch-input that clicks on the menu button "Display classification".

It's not very smooth but it'll work.

To enable the "click" when you click on the object, enter the DisplayClassification as the DEFAULT METHOD for the object type.

Then instantiate this new object within your workflow and pass it to the workitem.

Good luck,

Florin

1 REPLY 1
Read only

Former Member
0 Likes
283

Hi Larry,

using the classification itself might be a little too complex. I suspect you would like to have an object link in the bottem right box and when you klick on it the customer's classification shall be shown in a new window?

A pragmatic solution goes like this:

Transactio swo1, enter KNA1, click "Create SubType".

Fill in the new Subtype starting with Z and name it "CustomerClassification" or something useful.

Then create a new Method "DisplayClassification" with no parameters and such.

Within the object's method coding you can use the field object-key-customerNo to adress the current customer number.

Display the classifcation by just execution XD02 with a batch-input that clicks on the menu button "Display classification".

It's not very smooth but it'll work.

To enable the "click" when you click on the object, enter the DisplayClassification as the DEFAULT METHOD for the object type.

Then instantiate this new object within your workflow and pass it to the workitem.

Good luck,

Florin