cancel
Showing results for 
Search instead for 
Did you mean: 

usage type

Former Member
0 Kudos

Hi,

Is it possible to transfer usage type of lease out  while posting to FI.

we want usage type should be shown in FI document .

is any method to do so

like leaseout number is shown in FI documnet .

like u can se contract is coming in fi document . i want usage type is shown in fi document

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

can any one tell me what mistake i have done

EXITS-NAME  = 'U504'.                                             "JSB
   EXITS-PARAM = C_EXIT_PARAM_Field.                                  "JSB
   EXITS-TITLE = TEXT-106.                                           "JSB
   APPEND EXITS.

narnei
Contributor
0 Kudos

http://wiki.scn.sap.com/wiki/display/ABAP/Substitution+Rule(User+Exit)+in+FI+-+FB60+for+Partner+Bank...

Hi Singh,

I think you can try to adopt a substitution rule for bringing Usage type into your financial documents.

Any how below link will help you to get a basic idea on creation / using the substitution rules in SAP.

Regards,

Subbarao.Narne

Former Member
0 Kudos

can you tell me in detail

i want when i run fosa in RE module the usage type of lease out get reflect in any fiels in fi document.

Former Member
0 Kudos

i write dowm my user exit as

FORM U504.                                                          "Nutan
DATA wa1 type vimi01 ,
       RU Like vimi01-smenr,
        be like vimi01-swenr,
        snunr LIKE vimi01-snunr.

* If Account type is 'K' i.e. Vendor and G/L Account is '0000240005'
* then get the Business area from Employee  Master (Info type no '0001'
* on the basis of Personall No. (Pernr)
* G/L Account = '0000240005' Sundry Creditors- Employees
clear: wa1.

   ru = BSEG-VERTN+6(4) .
   BE = BSEG-VERTN+0(2).
shift ru right deleting trailing space.
  overlay ru with '00000000' .
  shift BE right deleting trailing space.
  overlay BE with '00000000' .

  SELECT single * FROM VIMI01 into WA1 WHERE bukrs = 'DMRC' and SMENR = ru and swenr = BE.
If sy-subrc = 0 .
move wa1-snunr to bseg-werks .

endif.
ENDFORM.



but still its not coming  in fi