Got to check out the new lens on Squidoo on SAP Training
SAP SD Training
SD stands for Sales & Distribution. This module of SAP deals with the handling of sales, distribution of goods/services, warehouse interaction, packaging, billing, pricing, invoicing, order management, customer management etc.
For quality SAP SD Training, please visit Magna Training.
How are certian printers locked in QA and DEV environments..?
While running a production system, QA and DEV systems have access to the production printers also. In order to clog printers used in production , they can be locked from issuing outputs in different environments.
For example , printer US10 can be locked to in QA and DEV environments but only made active in PROD environment.
Field Modifications
1. How to selectively grey out a field in VA01/02 ?
User Exit USEREXIT_FIELD_MODIFICATION
This exit is processed for EVERY field in the screen.
eg., Submitted date/time is entered here when creating the quote. In change mode this field by default is editable. The business required that this field should not be editable later after
the quote is created.
The following code is written to accomplish this.
if t180-trtyp eq 'V' and vbak-auart ne 'ZQTE' and ( screen-name = 'VBAK-MAHDT' or
screen-name = 'VBAK-BSTZD' ).
data: w_mahdt like vbak-mahdt.
data: w_bstzd like vbak-bstzd.
clear: w_mahdt, w_bstzd. "Submitted Date and Time fields
select single mahdt bstzd " Select the actual fields from the document.
from vbak
into (w_mahdt, w_bstzd)
where vbeln = vbak-vbeln.
if ( not w_mahdt is initial )
and ( not w_bstzd is initial ).
screen-input = 0. " This is what makes the fields grayed out.
endif.
endif.
Static vs Dynamic Credit Check
Static :: Combined value of
- Open Orders {Orders not yet delivered}
- Open Deliveries {Deliveries not yet invoiced}
- Open Invoices {Invoices not forwarded to Accounting}
- Open A/R Items
- Dynamic Part {Open Order Value}
- Open Deliveries
- Open Invoices
- Open A/R Items
More Details on SAP Credit Management and SAP SD Training here.
Where are text objects maintained ?
SO10. These text objects are extensively used in SAP Script and SMARTFORMS. SAP Text Determination in SD can be used to configure the way texts flow through in SAP SD. Visit SAP SD Training for full fledged SAP Training in Sales and Distribution Functional Module