Quantcast
Channel: SCN: Message List
Viewing all 8851 articles
Browse latest View live

Re: Need automatic e-mail config for Service Desk Solman 7.1 SP12

$
0
0

Hi Prakhar,

 

Thanks for the information, I am working on this.

 

I am actually Basis Admin , do we need any CRM consultant on this?

 

Regards,

Karthik


Re: How to Generate PDF Based on Multiple Selection from Query's Hit List

$
0
0

Hello Ekansh,

 

Nice !

Can you share any document for the same(for understnading GET_STREAM)


Hello Jay

Very interesting query.



Thanks,

Pavan G

Re: Not able to Add Component in Design Studio client

$
0
0

Hi Sakrikha ,

     Try to delete the Analysis Config folder and then open Design Studio it will create a new Config check weather the issue is repeating.

 

Note:

By deleting Analysis config you may loss the things:

  • All your Installed SDK components will be deleted you may need to re-install it again
  • All your applications will be deleted you may have to take a back_up

  

Hope this would help.

 

Thanks

Naveen

Re: SAP PS Reports

$
0
0

Hi Shirley,

 

 

Check this report  S_ALR_87013558 - Budget/Actual/Commitment/Rem Plan/Assigned 

 

 

Regards

Praveen

Re: Partner bank Field is not available in downpayment request f-47

$
0
0

Hi Surya,

 

If your issue is solved, you may please close the issue by assigning the points.

 

Regards

Shanid

Re: SAP APO CIF QUEUE Debugging

Re: Put constant inside binding

$
0
0

Hi Stephane,

 

Yes you can, you have to do -

 

  new sap.ui.commons.TextView({  text: constant + "{FILENAME}"              //constant Value should be declared in a variable  })

Please check the sample here - JS Bin - TextView Binding


In my code, I have done like this -


var oTextView = new sap.ui.commons.TextView({text: "Customer - " + "{/modelData/employeesData/0/Name}"});

Regards,

Sai Vellanki.

Procedure to create n- number of bins

$
0
0

Hello Friends,

 

Here , after creating a new storage location in ecc - ewm , now i want to create some 100 -200 number of bins for the same location.

So what is the right procedure here .Please assist me .

 

 

Kindly breif the method.

 

Thankyou in an anticipation

 

Regards,

Bharti


Re: purchase order

Re: How to add a row in the view.

Using SCN page in IFrame

$
0
0

Hi All,

 

I want to use SCN page in my Application using IFrame but it is blocked because it SCN sets the response header X-Frame-Options:SAMEORIGIN.

 

Please let me know, if there is any workaround available for this.

 

Is this response header "X-Frame-Options:SAMEORIGIN" recently added ? Because i have seen atleast 3 years back people have used it in IFrame.

 

Thanks,

Praveen

diff between released, not accesible and locked in items under general settings

$
0
0

hi,

 

can any one explain me the diff between released, not accesible and locked in items under general settings??

thanks in advance

Output not triggering on time in sales order.

$
0
0

Hello ,

 

I am facing a strange issue , I have scheduled one job for two output types which should get trigger once the order is saved and there should not be any  blocks. But what I have noticed is that one of the output type works fine (Transmission Medium-5) and other output type(Transmission medium - 1) take some time to process. Sometimes 5 hours and some time 2 days. And some times it gets picked in the next job . All condition records are maintained , everything is fine. Help me to correct this.

 

Regards

Jaskirat

Re: In ME51N, I have to make one column of item details table read-only.

$
0
0

Thanks but it won't work as:

1. We can not give check conditions.

2. We need to create new Z transaction which will not accpeted by user.

 

 

Thanks

Manu B

Re: analysis for office locking filtring


Re: SRM ECC Integration

$
0
0

Hi Venkat,

 

thanks for reply .I am ABAPER and I don't  have much idea about SRM , as per the requirement we need to do that.

Yes I have checked SRM table COMM_CATEGORY and category ID I created as MAT.

and in ECC what i need to check in that table.

Re: Archive Backup failed from DB13

$
0
0

Abhijeet,


I see below error,

 

BR0278E Command output of 'SHELL=/bin/sh /oracle/PRO/112_64/bin/rman nocatalog':

ld.so.1: rman: fatal: relocation error: file /oracle/PRO/11204/bin/rman: symbol kgnfsgsvr11_: referenced symbol not found

BR0280I BRARCHIVE time stamp: 2015-08-19 11.14.28

BR0279E Return code from 'SHELL=/bin/sh /oracle/PRO/112_64/bin/rman nocatalog': 137

 

 

Return code 137 mean the job was killed because it exceeded the time limit.

Looks like the job waited for some time to write in the disk but unfortunately disk was not available due to some reason.

 

Can you check the error in this perspective.

 

regards,

Rv

Re: Inbound messages stuck in sxmb_moni with released for processing (WS )status

$
0
0

Hi Sunita,

 

We are facing the same issue.

 

Can you please let me know how to fix the issue.

 

 

Regards,

Sreenivas.

Re: SCN的大多数文档是不是都连接不上

Re: プリンター出力用紙サイズについて

$
0
0

Yoshi Takaseさん、いつもお世話になりまして本当にありがとうございます。

 

ご指示頂いた通りすると、用紙サイズを設定できました。

 

しかし、連続紙を印刷しているのですが

1枚目は印刷されますが、印刷後、止まってしまい、

2名目以降が連続して印刷されません。

ちなみに、同様のレポートファイルをCrystal Reportsで印刷すると問題なく連続で印刷されます。

 

試している Visual Basic のコードは以下の通りです。

*************************************************************

Private Sub Button5_Click(sender As Object, e As EventArgs) Handles Button5.Click

 

    crReportDocument = New ReportDocument

 

    Dim i As Integer
    Dim pSize As Integer
    Dim doctoprint As New System.Drawing.Printing.PrintDocument()

 

    doctoprint.PrinterSettings.PrinterName = "\\myServer\NetPR_24"

 

    For i = 0 To doctoprint.PrinterSettings.PaperSizes.Count - 1
        Dim rawKind As Integer

 

        If doctoprint.PrinterSettings.PaperSizes(i).PaperName = "seal" Then
            rawKind = CInt(doctoprint.PrinterSettings.PaperSizes(i).GetType().GetField("kind", Reflection.BindingFlags.Instance Or Reflection.BindingFlags.NonPublic).GetValue(doctoprint.PrinterSettings.PaperSizes(i)))

 

            crReportDocument.PrintOptions.PaperSize = rawKind
            'crReportDocument.PrintOptions.PaperSize = CType(119, PaperSize)

 

            pSize = rawKind

 

 

            Exit For

 

        End If
    Next

 

 

    Dim sBuff As String
    sBuff = Command()

 

    Label1.Text = "Z:\現品票.rpt"

 

 

    'データベース更新(Start)
    Dim crTableLogoninfo As New TableLogOnInfo()
    Dim crConnectionInfo As New ConnectionInfo()

 

    crReportDocument = New ReportDocument
    crReportDocument.Load(Label1.Text)

 

    With crConnectionInfo
        .ServerName = "orcl"
        .UserID = "USER"
        .Password = "password"
    End With

 

    crReportDocument.Refresh()

 

    For ii As Integer = 0 To crReportDocument.Database.Tables.Count - 1
        crTableLogoninfo = crReportDocument.Database.Tables(ii).LogOnInfo
        crTableLogoninfo.ConnectionInfo = crConnectionInfo
        crReportDocument.Database.Tables(ii).ApplyLogOnInfo(crTableLogoninfo)
    Next
    'データベース更新(End)

 

 

    '用紙サイズ
    'crReportDocument.PrintOptions.PaperSize = CrystalDecisions.Shared.PaperSize.PaperA4  '用紙サイズがA4
    'crReportDocument.PrintOptions.PaperSize = CType(pSize, PaperSize)
    crReportDocument.PrintOptions.PaperSize = CType(pSize, CrystalDecisions.Shared.PaperSize)

 

 

    '用紙の向き
    'crReportDocument.PrintOptions.PaperOrientation = CrystalDecisions.Shared.PaperOrientation.DefaultPaperOrientation '用紙の向きが自動
    'crReportDocument.PrintOptions.PaperOrientation = CrystalDecisions.Shared.PaperOrientation.Landscape '用紙の向きが横
    crReportDocument.PrintOptions.PaperOrientation = CrystalDecisions.Shared.PaperOrientation.Portrait '用紙の向きが縦

 

    '給紙方法
    'crReportDocument.PrintOptions.PaperSource = CrystalDecisions.Shared.PaperSource.Auto  '給紙方法は自動
    crReportDocument.PrintOptions.PaperSource = CrystalDecisions.Shared.PaperSource.Tractor '給紙方法はトラクター

 

    Try
        '出力先プリンタ
               crReportDocument.PrintOptions.PrinterName = "\\myServer\NetPR_24"

 

        '印刷
        '第一引数は印刷する部数、第二引数は部単位に印刷するかどうか、第三引数は印刷を開始するページ番号、第四引数は印刷を終了するページ番号
        'なお、全部のページを印刷する場合は第三と第四の引数に0をセットします。
        'crReportDocument.PrintToPrinter(Single.Parse(TextBox1.Text), True, 0, 0)
        crReportDocument.PrintToPrinter(Single.Parse(TextBox1.Text), False, 1, 9999)

 

        MessageBox.Show("Report finished printing!")

 

    Catch err As Exception
        MessageBox.Show(err.ToString())
    End Try

 

 

 

 

 

End Sub
Viewing all 8851 articles
Browse latest View live




Latest Images