cancel
Showing results for 
Search instead for 
Did you mean: 

Regarding filling of Data in the R/3 Data Sources.

Former Member
0 Kudos

Hi All,

I am in need of Vendor Code from 2lis_03_bf. The field is already available in the Data Source. However, when i check the data using RSA3, i am not getting data for Account Number of Vendor(Vendor Code). How to proceed so that the vednor code details will be filled in the successive data sources???

Regards

Jay

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Hi Jayanth Y ,

It won't affect LO and subseqent delta.

After standard extractor's extraction system calls up this enhancement in which you can populate the information .

Regards

Nimesh

edwin_harpino
Active Contributor
0 Kudos

hi Jayanth,

what's the infoobject vendor ? 0GN_VENDOR ?

check if helps oss note 885173-0IC_C03: Update for 0GN_VENDOR is incomplete

Symptom

The system does not update any characteristic values for 0GN_VENDOR (vendor), for example, for the stock category (0STOCKCAT) = Q (project stock).

Other terms

0GN_VENDOR, 0IC_C03, 0STOCKCAT, 2LIS_03_BF, 2LIS_03_BX

Reason and Prerequisites

The 2LIS_03_BX->0IC_03 or 2LIS_03_BF->0IC_C03 update rules are incomplete during the characteristic value calculations of the 0GN_VENDOR InfoObject.

Solution

Import the following Support Packages:

BI Content 3.3 Support Package 18

BI Content 3.53 Support Package 7

BI Content 7.02 Support Package 1

These contain the following changes for the 2LIS_03_BX->0IC_03 or 2LIS_03_BF->0IC_C03 update rules:

New characteristic value calculations for the 0GN_VENDOR InfoObject (affected key figures: 0ISSVS_VAL = Value of valuated stock that has been issued = Receipts value valuated stock, 0ISSTOTSTCK = Issue quantity total stock, 0RECTOTSTCK = Receipt quantity total stock, 0ISSVALSTCK = Issue quantity valuated stock and 0RECVALSTCK = Receipt quantity valuated stock) using this routine.

  • ... determine consolidated key

IF COMM_STRUCTURE-stockcat CA 'KQ' OR

COMM_STRUCTURE-stocktype CA 'QRS'.

PERFORM gn_get_global_key TABLES MONITOR

USING COMM_STRUCTURE-gn_r3_ssy

g_c_bwbeoty_r3vendor

COMM_STRUCTURE-vendor

RECORD_NO

RECORD_ALL

CHANGING RESULT

ABORT.

ENDIF.

  • if the returncode is not equal zero, the result will not be updated

RETURNCODE = 0.

Former Member
0 Kudos

Hi AHP

Thank you for the information. I think it will resolve my issue.

Former Member
0 Kudos

Hi Jayanth,

User-Exit should work in your case .

Go to CMOD . Create project

Add enhancement RSAP0001 (Customer function calls in the service )

And component EXIT_SAPLRSAP_001 (transactional data) should serve your purpose.

Sample coding will be like this .

&----


*& Include ZXRSAU01 *

&----


DATA : LV_TABIX TYPE I.

CASE I_DATASOURCE.

When '2lis_03_bf'.

*Logic for extracting a vendor and putting it back into C_T_DATA

endcase.

Regards

Nimesh

Former Member
0 Kudos

Hi Nimesh,

Will it not affect my LO setup and subsequent delta extractions. Just a small doubt

Regards

Jay