cancel
Showing results for 
Search instead for 
Did you mean: 

EPCF - determine in Portal or not

Former Member
0 Kudos

Hi all,

Can use EPCF to determine if I am in portal or not? Is there a EPCF function to do that.

Thanks in advance.

Regards,

Janvi

Accepted Solutions (0)

Answers (2)

Answers (2)

dhorions
Contributor
0 Kudos

I don't know about the EPCF object, but I think you can check if you are in the portal like this :


<script type="text/javascript">
<% if runtime->portal_version eq '0.0'.%>
alert("not in portal");
<% else.%>
alert("in portal version <%=runtime->portal_version%>");
<%endif.%>
</script>

Former Member
0 Kudos

Hi Janvi,

I am not sure of what u r asking but the following link provides all the api available for EPCF.

http://help.sap.com/saphelp_nw04/helpdata/en/9f/6fa84016631814e10000000a1550b0/frameset.htm

Regards

gEorgE