cancel
Showing results for 
Search instead for 
Did you mean: 

Can u please send me CRM_ORDER_READ sample program easy understand please?urgent?using ALV programing?

Former Member
0 Kudos

Can u please send me CRM_ORDER_READ sample program easy understand please?urgent?using ALV  programing?

<Moderator Notes>

This is thread is being locked, because plenty of examples exist for CRM_ORDER_READ if you do a basic search.  ABAP Requests for SAP CRM are never urgent.  Next time do a search and read thefirst.

</Moderator Notes>

Message was edited by: Stephen Johannes

Accepted Solutions (0)

Answers (5)

Answers (5)

Former Member
0 Kudos

Hi,

If you are in need of understanding how to use the FM - CRM_ORDER_READ, you can check the below link. Here you can find a practical scenario on how to use this FM .

http://scn.sap.com/docs/DOC-35747

Thanks & Regards,

Kiruthika K.

former_member182421
Active Contributor
0 Kudos

Hi,


Take a look a the standard program CRM_ORDER_READ and build your own ALV depending which information you need,.

Regards,

Luis

Former Member
0 Kudos

Hi,

If you are in need of understanding how to use the FM - CRM_ORDER_READ, you can check the below link. Here you can find a practical scenario on how to use this FM .

http://scn.sap.com/docs/DOC-35747

Thanks & Regards,

Kiruthika K.

Former Member
0 Kudos

Can you please mention your question clearly here ?

Thank and Regards,

Nikhil Kulkarni

former_member198837
Active Participant
0 Kudos

Hi,

* read the below requested objects from order_read

     INSERT lc_orderadm_h     INTO TABLE lt_req_objects.

     INSERT lc_orderadm_i     INTO TABLE lt_req_objects.

     INSERT lc_pricing_i      INTO TABLE lt_req_objects.

     INSERT lc_schedlin_i     INTO TABLE lt_req_objects.

     INSERT lc_partner        INTO TABLE LT_REQ_OBJECTS.

     CLEAR: LT_ORDERADM_H, LT_ORDERADM_I, LT_PRICING_I, LT_SCHEDLIN_I, LT_PARTNER.

     CALL FUNCTION 'CRM_ORDER_READ'

       EXPORTING

         it_header_guid       = lt_guid

         it_requested_objects = lt_req_objects

         iv_no_auth_check     = 'X'

       IMPORTING

         et_orderadm_h        = lt_orderadm_h

         ET_ORDERADM_I        = lt_orderadm_i

         ET_PRICING_I         = lt_pricing_i

         ET_SCHEDLIN_I        = lt_schedlin_i

         ET_PARTNER           = lt_partner

       EXCEPTIONS

         document_not_found   = 1

         error_occurred       = 2

         document_locked      = 3

         no_change_authority  = 4

         no_display_authority = 5

         no_change_allowed    = 6

         OTHERS               = 7.

Regards,

Karthik.