Posts

Java script in Adobe form to hide field based on condition

Image
                                                                Refer adobe form -  Adobe form to print PO details       1.  Open Adobe form and click on layout.         I don't want status field when PO equals to  4500000032 .      2.  select status field select show as initialize, Language as JavaScript and write code.      3.  Save and activate.      Case:1 --  PO  4500000032               Input               Output      Case:2 --  PO  4500000033              Input               Output ******...

Java script in Adobe form to hide field based on condition

Image
                                    Refer adobe form -  Adobe form to print PO details     1. Open Adobe form and click on layout.          I don't want status field when status equals to I.      2. select status field select show as initialize, Language as JavaScript and write code. 3. Save and activate. Case:1 -- PO has status I Thats why status field is not visible     Input     Output Case:2 -- PO has status not equal to I Thats why status field is visible.     Input     Output ************************** * **** Thank You ********************** ** ****

Call adobe form in Report

Image
  To integrate the adobe form in the program, we can use 3 function modules.     1. FP_JOB_OPEN -- This function module is used to open the job. We can set the default parameter values and pass them to this function module.     2. FP_FUNCTION_MODULE_NAME -- This function module is used to get the function module name of adobe form.     3.  FP_JOB_CLOSE  -- This function module is used to close the job.                                         Refer adobe form -   Adobe to print PO details     1. Goto T-code SE38.     2. Give program name click on create.     3. Write code.           REPORT yr_ab_call_adobe_po_details .      DATA : lr_outparam TYPE sfpoutputparams ,            lr_resul...

Adding logo to adobe form

Image
                                                             Refer -   Purchase order 1. Open Same Adobe form and click on change. 2. Click on layout. 3. In this scenario I want barcode for PO.  4. So go to poinput subform and click on insert barcodes --> select barcode(128A). 5. Link the barcode. 6. Save and activate. Input Output ************************** * **** Thank You ********************** ** ****

Adobe form to print purchase order details

Image
  1.  Goto T-code SFP. 2.  Select interface and give interface name click on create button. 3.  Give description and click on save. 4.  In this scenario purchase order as input and display purchase order header details and purchase order item details. 5.  Double click on import and click on create button. 6.  Give parameter name(p_ebeln) type and type name(ebeln). 7.  Goto SE11 create two structures and table types for header and item details.                                                                                                                       Structure for Header      ...

Adobe form to print sale order details

Image
                                                                                     Introduction to adobe                                                                       Types of interfaces 1. Goto T-code SFP. 2. Select interface and give interface name click on create button. 3. Give description and click on save. 4. In this scenario sale order as input and display sale order header details and sale order item details. 5. Double click on import and click on create button. 6. Gi...