-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabapcall_dialog_shortref.html
122 lines (119 loc) · 5.1 KB
/
abapcall_dialog_shortref.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!doctype HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="EN">
<!-- ABAPCALL_DIALOG_SHORTREF -->
<!-- Mirrored from help.sap.com/doc/abapdocu_751_index_htm/7.51/en-US/abapcall_dialog_shortref.htm by HTTrack Website Copier/3.x [XR&CO'2014], Thu, 20 Jan 2022 18:04:20 GMT -->
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="author" content="SAP">
<meta name="description" content="CALL DIALOG">
<title>
CALL DIALOG - ABAP Keyword Documentation
</title>
<link rel="icon" href="ABAPIcon.ico" type="image/ico">
<link rel="shortcut icon" href="ABAPIcon.ico">
<LINK rel="stylesheet" href="abap_docu.css" type="text/css">
<script type="text/JavaScript">
function call_link(linked_file)
{
if(parent.frames.length>0){
parent.window.frames["basefrm"].window.location = linked_file;
parent.window.frames["treeframe"].window.location = "abap_docu_tree92bd.html?file=" + linked_file;}
else {
window.location = linked_file;}
}
function urlToClipboard(id){
try{ var loc = top.location.href;}
catch(e){ alert( "URL cannnot be determined" ); return; }
var field = document.getElementById(id);
field.focus();
if ( loc.search( ".htm" ) == -1 && loc.search( ".HTM" ) == -1 ){ loc = loc + "index.htm"; }
if ( loc.search( "index.html" ) != -1
|| loc.search( "INDEX-2.html" ) != -1 ){
var off = loc.search( "file=" );
if ( off == -1 ){
field.value = loc + "?file=abapcall_dialog_shortref.htm"; }
else {
field.value = loc.substring( 0, off ) + "file=abapcall_dialog_shortref.htm";
}
}
else {
field.value = loc; }
field.setSelectionRange(0, field.value.length);
var r = confirm( "Copy URL to clipboard?\n\n" + field.value + "\n\nCopy to clipboard does not work in all browsers." );
if (r == true) {
try{
document.execCommand("copy");
}
catch(e){ alert( "URL could not be copied to clipboard" ); }
}
window.scrollTo(0,0);
}
</script>
</head>
<body>
<div class="all">
<p class="copyright">SAP NetWeaver AS ABAP Release 751, ©Copyright 2017 SAP AG. All rights reserved.
<input type="button" value="URL" style="font-size:8px; width:26px; height:16px; padding:0"
onclick="urlToClipboard('url')" title="Copy URL to Clipboard" >
</p>
<span class="path">
<a href="javascript:call_link('abenabap.html')" class="blue">ABAP - Keyword Documentation</a> →
<a href="javascript:call_link('abenabap_shortref.html')" class="blue">ABAP - Quick Reference</a> →
C
</span>
<p><span class="h1">
CALL DIALOG - Quick reference<br><br>
</span></p>
<P>
<a href="javascript:call_link('abapcall_dialog.html')" class="blue">Reference</a> <br><br>
</P>
<p><span class="h2">
<span class="bold">Syntax</span>
</span></p>
<P>
<span class="qtext">CALL DIALOG dialog <i class=bn>[</i> <i class=bn>{</i>AND SKIP FIRST SCREEN<i class=bn>}</i> <br>
<i
class=bn>|</i> <i class=bn>{</i>USING bdc_tab <i class=bn>[</i>MODE mode<i class=bn>]</i><i class=bn>}</i> <i class=bn>]</i> <br>
<i class=bn>[</i>EXPORTING p1 FROM a1 p2 FROM a2 ...<i class=bn>]</i> <br>
<i class=bn>[</i>IMPORTING p1 TO a1 p2 TO a2 ...<i class=bn>]</i>.</span> <br><br>
</P>
<p><span class="h4">
Effect
</span></p>
<P>
<span class="bold">Obsolete:</span> Calls the <a href="javascript:call_link('abendialog_module_object_glosry.html')" class="grey" title="Glossary Entry">dialog module</a> specified in <span class="qtext">dialog</span>. <br><br>
</P>
<p><span class="h3">
<span class="bold">Additions</span>
</span></p>
<P>
</P>
<ul class="disc">
<li>
<span class="qtext">AND SKIP FIRST SCREEN</span> <br>Suppresses the initial screen. <br>
<br></li>
<li>
<span class="qtext">USING bdc_tab <i class=bn>[</i>MODE mode<i class=bn>]</i></span> <br>Executes the dialog module using a
<a href="javascript:call_link('abenbatch_input_table_glosry.html')" class="grey" title="Glossary Entry">batch input session</a>
in the internal table <span class="qtext">bdc_tab</span>. The processing mode can be specified in <span class="qtext">mode</span>. <br>
<br></li>
<li>
<span class="qtext">EXPORTING p1 FROM a1 p2 FROM a2 ...</span> <br>Passes actual parameters <span class="qtext">a1</span>,
<span class="qtext">a2</span>, ... to input parameters <span class="qtext">p1</span>, <span class="qtext">p2</span>, ... <br>
<br></li>
<li>
<span class="qtext">IMPORTING p1 TO a1 p2 TO a2 ...</span> <br>Inherits output parameters <span class="qtext">p1</span>,
<span class="qtext">p2</span>, ... in actual parameters <span class="qtext">a1</span>, <span class="qtext">a2</span>, ...
<br></li>
</ul>
<br>
<br>
<br>
<br>
</DIV>
<fieldset style="opacity:0">
<input id="url" type="text" />
</fieldset>
</BODY>
<!-- Mirrored from help.sap.com/doc/abapdocu_751_index_htm/7.51/en-US/abapcall_dialog_shortref.htm by HTTrack Website Copier/3.x [XR&CO'2014], Thu, 20 Jan 2022 18:04:20 GMT -->
</html>