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

Object status while transferring data

Former Member
0 Likes
604

Hi Experts,

I have a requirement to create th Service Notifications in IW51 along with the Object Status.

I have transferred the data from one system to application server and reading the same into another system and based on the data I am creating the Notifications. Now my requirement is how can we create the data with the System status and User status.

Regards,

Rajaneesh.

1 ACCEPTED SOLUTION
Read only

Venkat_Sesha
Product and Topic Expert
Product and Topic Expert
0 Likes
538

Hey Dude the title is wrong. but anyhow please find the below comments which may be help full to you.

First thing is System status you cannot change them. because they are the statuses based on the movement of the document.

For example. the Order created is moved to Print. then it will become the stauts as PRT some thing like that. so this operation is System driven. Comming to User status. User statuses always starts with EXXXX Example E0009

You can find all the Status in the table JEST and related texts in TJ02T and TJ30T for System and User Status respectively.

User status, you can always handle them do the recording it will work, Hope this helps.

Regards,

Bhargav.

3 REPLIES 3
Read only

Venkat_Sesha
Product and Topic Expert
Product and Topic Expert
0 Likes
539

Hey Dude the title is wrong. but anyhow please find the below comments which may be help full to you.

First thing is System status you cannot change them. because they are the statuses based on the movement of the document.

For example. the Order created is moved to Print. then it will become the stauts as PRT some thing like that. so this operation is System driven. Comming to User status. User statuses always starts with EXXXX Example E0009

You can find all the Status in the table JEST and related texts in TJ02T and TJ30T for System and User Status respectively.

User status, you can always handle them do the recording it will work, Hope this helps.

Regards,

Bhargav.

Read only

0 Likes
538

Hi Bhargav,

Here I am facing a Issue, The User statuses are not In Order for Example E0009 and next is E0015 so how can I handle Pagedown here to selecting the multiple Checkboxs while creating a Notification. How I Need to handle pagedown since they are not in order format i cannot capture the correct user status. please advice.

Thanks In advance,

Rajaneesh

Read only

Venkat_Sesha
Product and Topic Expert
Product and Topic Expert
0 Likes
538

Hey I have no Idea why the Order is missing in the statuses but you can always capture the index and then try checking the checkbox for the required status based on index.

Example ;

Case wa_jest-stat.

WHEN 'E0009'.

gv_val = 1.

-


append the status here and pass the same to the BDC.

WHEB 'E0015'

gv_ind = 2.

...............

Endcase.

I hope this helps you ...

Regards,

Bhargav.