0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

使っているクラウドなどの小ネタAdvent Calendar 2024

Day 13

Salesforce モバイルアプリケーションでforce:navigateToURLを使ってレポートに遷移すると集計レポートが機能しない

Last updated at Posted at 2024-12-12

使っているクラウドなどの小ネタ Advent Calendar 2024 13日目

ボタンをクリックするとレポートに遷移するコンポーネントを作成しています。

image.png

以下のコードで遷移

	handleClick01 : function(component, event, helper) {
        //AR年間ランキング(担)
		var urlEvent = $A.get("e.force:navigateToURL");
        var myUrl = "/lightning/r/Report/00OIR000008QK5F2AW/view?queryScope=userFolders";    
        urlEvent.setParams({
          "url": myUrl
        });
        urlEvent.fire();
	},

デスクトップだと問題なく表示できます。
しかし、モバイルアプリではサマリーレポートの明細行が表示されてしまいますね。

image.png

もしかして、window.open( myUrl ); なら機能するかと思って変更すると...
なんと、機能します。何で?バグかなぁ。別画面かな?

image.png

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?