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

ICO configurations not working

$
0
0

HI Experts,

 

Scenario: File to Proxy scenario.

 

Please find our landscape:

 

PI DEV -- PI Qua -- PI Production

 

ECC Dev -- ECC QA -- ECC PRD

 

As part of improving testing, we have introduced a new landscape as below

 

ECC DEVTEST -- ECC QA TEST ( Copy of ECC PRD)

 

Now, our PI DEV should poing to ECC DEVTEST

I have changed and reconfigured ICO configurations pointing to ECC DEV TEST, it worked fine.

 

But i am trying to directly edit and doing configurations in PI quality which should point to ECC QA TEST server.

Now, our PI QA is pointing to to ECCQA TEST environment.

 

 

Existing configuration:

The scneario is configured through ICO configuraiton

 

Changes done at SLD side, defined ECC_NewQA as business system and a new soap receiver comm channel is configured to connect as proxy.

 

I have done the changes in ICO, Receiver -- Pointed to new receiver and its Interface determination and soap receiver is configured.

 

But, When I test the scenario, the file is still going to old ECC QA server, the files are not pointing to new ECC QA EST server.

 

Do we need to handle such config changes also in transports?

 

Expecting your responses ASAP.

 

Thanks,

--Kishore


Re: SSFS on PI system

$
0
0

Hi Albert,

 

That's good that your issue is resolved. Please close the thread as it's resolved, thanks for update.

 

Cheers

Sharma

Re: Downloading Structure of Table

$
0
0

Hi Anuja,


Good evening.

 

Following are the steps to get the structure to an excel file using VBScript:

 

a. Define all the variables that are needed for this script.


   - and one of the main variable is 'Long Index Variable' that you can define as follows:

 

   Dim lngIdx                'Needed to loop thru SAP table structure & retrieve table column field names.

 

&

 

Dim ExcelApp                      'Excel App

Dim ExcelWorkbook             'Excel workbook

Dim ExcelSheet                   'Excel worksheet

 

    

b. Instantiate the structures and functions for SAP access - which are:

Set objFileSystemObject = CreateObject("Scripting.FileSystemObject")       'Instantiation of filesystem object

Set ctlLogon = CreateObject("SAP.LogonControl.1")                          'Instantiation of SAP Logon Control Object

Set funcControl = CreateObject("SAP.Functions")                            'Instantiation of SAP Functions - NOTE SAP should be installed

Set ctlTableFactory = CreateObject("SAP.TableFactory.1")                   'Setting & instantiation of SAP Table Factory

 

 

   Set RFC_READ_TABLE = funcControl.Add("RFC_READ_TABLE")                 'Function control for RFC READ TABLE, following 4 are needed in that sequence

    Set strExport1 = RFC_READ_TABLE.Exports("QUERY_TABLE")                 'SAP Query Table instantiation

    Set strExport2 = RFC_READ_TABLE.Exports("DELIMITER")                   'Delimiter as needed, and part of RFC READ TABLE in SAP

    Set tblOptions = RFC_READ_TABLE.Tables("OPTIONS")                      'This is for writing the actual SQL Query

    Set tblData = RFC_READ_TABLE.Tables("DATA")                            'Please refer to actual RFC READ TABLE FM (SE37) shown above

    Set tblFields = RFC_READ_TABLE.Tables("FIELDS")

    Set tblStructure = funcControl.CreateStructure(sapTables(m))    'Where sapTables(m) is the array containing the list of tables for which you want to retrieve the structure.

 

c. Following is the function that you need to retrieve the table structure along with their positions
that SE16 shows you OR ZSE16 shows you.

 

For lngIdx = 1 To tblStructure.ColumnCount  'Loop thru entire table structure and get the table column field names. This  is ideal.

 

 

 

     if tblStructure.ColumnCount > 10 Then

        actCounter = 10   'This is needed since RFC_READ_TABLE which the main function that i use has an output field that is TAB512 - implying the total length of output cannot be > 512 bytes.

     else

        actCounter = tblStructure.ColumnCount

     End if

 

 

    For lngIdx = 1 to actCounter

 

 

             '.ColumnName contains field name

             '.ColumnLength contains field length

            '.ColumnOffset contains field offset

 

          tblFields.AppendRow

     

          tblFields(tblFields.RowCount, "FIELDNAME") = tblStructure.ColumnName(lngIdx)

 

          ExcelSheet.Cells(row, n).Value = tblStructure.ColumnName(lngIdx)   '10 fields from the input table will be copied over along with their domain, size, offset and length.

 

'     If tblStructure.ColumnOffset(lngIdx) + tblStructure.ColumnLength(lngIdx) > 1024 Then Exit For 

 

      'WshShell.Popup  tblFields(tblFields.RowCount, "FIELDNAME") & " column retrieved", 1, "Progress" ' show message box with table fieldname for a second & disappears.

 

    Next

 

'---- not including full code.here.

 

Additional FYI - i am currently researching on using the following functions that will help to

increase the size of the output buffer, so that i can extract entire tables and not be limited to

512 bytes:

 

a. RPY_TABLE_READ  OR

b. BBP_RFC_READ_TABLE

 

Hope it helps. Let me know if you need any more help?.

 

Thanks

Ram.S

Re: Generating report based on the range format

$
0
0

Hi Loed,

 

Can you please clarify where exactly I have to include the interval option? Is it in the Text variable from which I am taking the year input. Based on my requirement I have to restrict my values to the month/year as can be seen in the rows column. So everytime we call the query I have to make the count for no of days from BEGDA to the values in the rows column. So I am really confuse in this case as to how to restrict the ENDDA based on my values in the rows column. Kindly suggest.

 

Regards,

Santosh

Re: Export documentation for India

$
0
0

Hi Suresh,

 

What exact documentations you are looking for? If SAP is not delivering these forms then you can develop your own forms or contact any approved partner who can fulfill your requirement. If your requirement is still not met raise an OSS Ticket to SAP.

 

Regards

Binoy

Re: Design Studio report that contains custom components

$
0
0

Hi Karol

 

I have install only the Data Bound Modul.

You mean i have to install all Modul on the left site?

 

Best Regards

Gabriel

SDK2.png

Re: Cancelled Order's With Sub Total

$
0
0

Hi rahul,

 

Thanks for your explanation.

 

Please try below query

 

SELECT  'Detail'[Type],

Convert (Varchar,T0.[DocNum],100)[DocNum],

T0.[DocDate],

T0.[CardCode],

T0.[CardName],

T0.[DocTotal] - T0.[VatSum] as 'Total'

,T0.[U_Desc]

 

 

FROM ORDR T0

 

 

WHERE T0.[CANCELED] = 'Y'

  AND  T0.[DocDate] >=[%0]

  AND  T0.[DocDate] <=[%1]

 

 

GROUP BY T0.[DocNum], T0.[DocDate], T0.[CardCode], T0.[CardName], T0.[DocTotal], T0.[VatSum]

, T0.[U_Desc]

 

 

 

 

 

Union

SELECT 'SubTotal' [Type],

'' [DocNum],

Max(T0.DocDate)[DocDate],

T0.[CardCode],

T0.[CardName],

Sum(T0.[DocTotal] - T0.[VatSum]) as 'Total'

,''

 

 

FROM ORDR T0

 

 

WHERE T0.[CANCELED] = 'Y'

  AND  T0.[DocDate] >=[%0]

  AND  T0.[DocDate] <=[%1]

 

 

GROUP BY T0.[CardCode], T0.[CardName]

 

 

ORDER BY T0.[CardName]

 

regards

Unnikrishnan

XSDS huge performance issue

$
0
0

Hi

I'm using XSDS extensively in my project. However, there is a huge performance issue with even small update/inserts to the data.
From the blog and PPT I got to know that I should do all the imports of the entities in an xsjslib file, rather than each xsjs file to improve performance.
I created a library with all the 8-9 entities that I need for the entire project. Not all these entities are used in all the xsjs files.

Should I create a separate xsjslib file for each entity?
I read in the blog that we can serialize the imports, can you please tell me how it's done?


Thanks


session time out issue in only android BO application

$
0
0

Dear All,

 

  In our landscape we have configured mobile for both ios and android. It was working fine in both devices. But from last few days only android users are facing session time out issue frequently, iOS users are using the BO app without any issues. Please find attached the screen shot for reference and please suggest.

 

System Details :

 

BOBI 4.1 SP3

Android  6.1.7

 

Thanking you in anticipation.

 

Regards,

Obinna.

Re: Fiori Launchpad not able to load Tile after patch upgrade

$
0
0

Hi Masayuki,

 

SAPUI5 component was of old version 1.28.1 so after upgrading to 1.28.9 it worked perfectly. Can you please help me with this issue. I am not able to open this application.


Regards,

Aniket

Re: Can anybody give me a demo code example of display templates(like i5Chart) in XML view?

$
0
0

Hi Sai,

 

I have tried to render the chart using the above mentioned code but I am getting the error as "com" not defined, in the below line:

 

var i5Chart = new com.sap.xmii.chart.hchart.i5Chart("i5Demo_Display", "i5Demo_Query");


what could be the issue? all the libraries are properly placed. Using JS view the piece of code is working fine, I mean the 'com' path issue.


Thanks and Best Regards,


Venkatesh

Re: REFX - ARCHITECTURAL VIEW and how to use it in Contracts

$
0
0

Hi,

 

Please check the note below for CAD integration example:

1335715 - CAD Provider Interface: Example implementation

Regards,

Bowen

Re: Installation of custom components manually

$
0
0

Hi wladimir,

 

For me its working, just by follwing the first two steps. Artifacts and config files seems to be auto generated. Can you try with only that first two steps?

 

Thanks,
Nithyanandam

Re: BI_WRITE_PROT_TO_APPLLOG Job in ECC and BW

$
0
0

Thanks for all the inputs...

Can I schedule this job using 3rd Party tools in ECC

A/R invoice opening error

$
0
0

while opening a/r invoice

 

FMS execution failed on field 'U_TDesc' with query name 'TaxDescription'


Re: EOBI Deduction age more than 60 years

$
0
0

Thanks for your detailed reply


DB is the date type in the date sepcification so your PCR would be like below

little bit confused about DB is the the DAte of Birth ?

Re: Delete attachment via script not working after upgrade

$
0
0

Hello Prabhakar,

 

In Earlier versions i.e, before version 10, there is no class for document links(509), but in Version 10 we have a class for Document links and there are few methods available which can be used for your logic.

 

Try those methods and check.

 

Also Instead of "newMA1.getDocumentLinkList().delete(docLinks.get(i)); " just give "docLinks .delete(docLinks.get(i));"

and check. Ideally what you have given should work but some times bean shell script behaves wierd.

 

Regards,

Raj

Re: Problem in ME51N item language

$
0
0

Is your user giving any language during log in ?

dev.jpg

Re: A/R invoice opening error

$
0
0

Hi venkadeswaran...

 

Remove the FMS and try.. check with the auto refresh field and also the FMS query..

 

Regards

Kennedy

KOB5

$
0
0

Dear All,

 

we want Clarification , we have created the investment order and we have done PO as well with F account assignment  even we have assigned the order number in PO as well , GRN is also done and AUC is also created and assigned in the Investment order and settled but we are not getting any details in KOB5 , we want to see the accounting entries and all.

 

please help searched in Google there is no correct answer all threads are incomplete

Viewing all 8713 articles
Browse latest View live




Latest Images