Calling an ABAP form SAPScript

Calling an ABAP form SAPScript
 
In Layout Set:
	DEFINE &X& = ...
        DEFINE &Y& = ...
        DEFINE &Z& = ...
        PERFORM XXXXXX  IN Zxxxxxxx
                        USING &X&
                        USING &Y&
    		CHANGING &Z&

In ABAP program Zxxxxxx
		FORM XXXXXX TABLES INPUT1 STRUCTURE ITCSY
                                                        OUTPUT1 STRUCTURE ITCSY

*get input parameters
                LOOP AT INPUT1.
                CASE INPUT1-NAME.
                                            WHEN 'X'.
               	                 INPUT_X = INPUT1-VALUE.
                                            WHEN 'Y'.
               		                INPUT_Y = INPUT1-VALUE.
     ENDCASE.
		ENDLOOP.

{logic to use program variable input_x and input_y to set say program variable output_z}

*set output variables:
	REFRESH OUTPUT1.
	OUTPUT1-NAME  = 'Z'.
	OUTPUT1-VALUE = OUTPUT_Z.
	APPEND OUTPUT1.

    Requires Free Membership to View

This was first published in October 2001

Join the conversationComment

Share
Comments

    Results

    Contribute to the conversation

    All fields are required. Comments will appear at the bottom of the article.

    Disclaimer: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.