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

Info needed on BAPI_SALESORDER_GETSTATUS

Former Member
0 Likes
1,517

Hello Friends

I have inherited a project to integrate a product (written in C #) with SAP using Web services.

One of the task is to modify an existing quote. I have been asked to use the standard BAPI BAPI_SALESORDER_GETSTATUS to first get the status of the quote and then decide if this quote can be changed to an order.

I was also told that this can be done only when a quote is at a certain stage. For example if the quote has been converted to an order then you can't make any changes to that quote.

So my question is using this bapi BAPI_SALESORDER_GETSTATUS, what all information can I get and what informaction will tell me that this quote is modifiable. What different statuses are there for a quote?

Any feedback or help will be greatly appreciated.

Thanks

Ram

1 ACCEPTED SOLUTION
Read only

former_member156446
Active Contributor
0 Likes
1,051

The BAPI take the Order number as input and gives out a structured output.. BAPISDSTAT

in BAPISDSTAT look for PRC_STAT_H value

	Not Relevant
A	Not yet processed
B	Partially processed
C	Completely processed

2 REPLIES 2
Read only

former_member156446
Active Contributor
0 Likes
1,052

The BAPI take the Order number as input and gives out a structured output.. BAPISDSTAT

in BAPISDSTAT look for PRC_STAT_H value

	Not Relevant
A	Not yet processed
B	Partially processed
C	Completely processed

Read only

0 Likes
1,051

thanks J@Y. i appreciate it.

Ram