Showing posts with label ABAP. Show all posts
Showing posts with label ABAP. Show all posts

Labels: , ,

I have created a company code 2XXX and copied company code 1XXX to it . After configuring FBZP to the new company code, I posted invoices and cleared them with F110.

But the checks we printed has the copied company code address. I have checked my Company code address in SPRO (OBY6) looks fine to me.But when it came to Check printing, it is taking the copied company code's address. What configuration steps need to make to get the new company code address.

Please check which address is maintained in SPRO... Enterprise Structure ... Definition .... Financial Accounting ..... Edit, Copy, Delete, Check Company Code....Edit Company Code Data..Select your company code and check out what is maintained in there as address.

But normally, Checks are printed in SAP using SAPScript forms assigned to the check payment method. So, as far as I can see, the address appearing on your check forms seems to be hard-coded, instead of reading from customizing tables (T001, etc.).

Have an ABAPer from your team look at the SAPScript form being used for these checks, and they should be able to confirm and correct this quickly.

Sidhika is a computer technology professional, educator with experience in the information technology. She works in a multi-disciplinary role that combines IT Infrastructure, SAP Functional and Network Management. If you like this post, Please leave a comment.

Labels:

The following steps will explain how to delete a specific transportation lane when you know "locfrom" and "locto". Try to change the special procurement key (SPK) on your material master in R/3 or ECC (if whenever linked them

We can delete a specific transportation lane using standard BAPI available. Please follow the steps as below.
    • In SE11/16 type the view name /SAPAPO/V_TRPRPD, in the field LOCNOFR type the "location from" and in field LOCNOTO type "location to", we will get the list of transportation lanes.
    • In column LOCFR we will get the GUID for location from & in LOCTO column we will get the GUID for location to.
    • Convert these GUIDs from char20 to char 32 using function module /sapapo/cif_guid_convert
    • Pass these char32 GUIDs to the BAPI BAPI_TRLSRVAPS_DELMULTI in parameter table TRLANE_KEY(fields = LOCATION_ID_FROM & LOCATION_ID_TO).
    • It will delete the specific transportation lane from the system.
    This is technical technique to delete T-lane but it will work.
    Sidhika is a computer technology professional, educator with experience in the information technology. She works in a multi-disciplinary role that combines IT Infrastructure, SAP Functional and Network Management. If you like this post, Please leave a comment.