Quantcast
Channel: SCN : All Content - SAP GUI
Viewing all 3616 articles
Browse latest View live

Focus-Sequence (Tab-Key) for own created screen-elements

$
0
0

Hello,

I am using Screen Personas Release 2 and 3 on two different system-landscapes.

In my new Flavor I have created some new screen elements (like input fields, buttons).

How can I change the sequence of the focus (Cursor) after pressing the TAB-Key?

Is this as changeable setting or is this the sequence of the element's creation?

Regards Matthias


Handling in case of a system-copy

$
0
0

Hello,

one of my periodically jobs is to copy a PROD-System to the QAS-system.

I installed the Personas-Addon in each system (DEV, QAS and the PROD-System).

The QAS-Datas will be overwritten after the data-copy.

Is there a Screen-Personas feature/process to save the QAS-data?

Currently, I save the persos-Table-entries in a transport (transport of copies).

Is there anybody who has some experience in this case?

Regards Matthias

Launch via browser URL

$
0
0


Hello,

 

Is it possible to launch a SAP program window based on pramaters given from a hyperlink;

 

Something like;

 

sap://launch?type=manifest&manifest_number=233454&delivery_display=no....etc

 

obvoiusly the user would have to have SAP running & logged in..

Configuration/ Setup guide for Personas 3.0

Error in Sap GUI 740 hostname 'NiHLGetNodeAddr' unknown

$
0
0

Hi All,

 

I get the SAP GUI error for 7.40 version. I'm using the SAP ROUTER.

 

I received the error text "hostname 'nihlgetnodeadd is' unknown". What should I do to overcome this problem?

 

Thanks Everyone

 

Regards

 

26-11-2015 10-37-55.png

Personas - Tab Merging Not Working in MM43

$
0
0

Hi all,

 

I have a requirement to take the Article Hierarchy table control from the basic tab of transaction MM43 and display it in another tab. I have followed the instructions on merging tabs but it does not seem to be working. I have dragged the control to the GuiUserArea but it is not available after switching tabs.

 

Could someone please explain the limitations of tab merging and whether or not there is a workaround for this?

 

TT.

500 SAP internal server error for Personas 3.0 SP01

$
0
0

Hi,

 

We have been getting the below error in google chrome browser when personas services has been enabled. All required system configurations including parameter setting has been done as per SAP notes. But still we are facing the same error. It would be helpful if some insights for resolving the error would be shared.

 

System component versions:

 

SAP Basis 740 SP011

SAP Netweaver 7.4

Kernel 742 Patch level 200


Error.PNG

Thanks in advance.

 

Thanks & Regards,

Preethi

Custom tables in Personas (take 2)

$
0
0

A little over a year and a half ago I wrote a blog about Creating a custom table in Personas using HTML tables, because Personas didn't support adding tables as a properly supported custom object type. That was in the days of Personas 2. Now Personas 3 is here and there still isn't a custom table object, but we can now do better than the HTML tables described in that blog. Personas 3 scripting is much improved and SAPUI5 has a really nice table type. I previously wrote about Using SAPUI5 charts in Personas Flavours and prompted by Gideon van Zyl's request here is how you add UI5 tables to a Personas flavour.

 

I'm going to use the same transaction - the Personas 3 migration tool - as I used for the chart example, and I'm building a UI5 table to replace the existing table in that transaction - the same one I built a chart for. The code to read the data from that chart into a JavaScript array is therefore identical, and a straight copy/paste from this wiki page - Copying Table data into a variable. This time, I don't need to filter or summarise the data at all so I'll build the table directly on the "contents" array produced by that code, which is structured like this:

 

[    {FLAVOR_ID: "9C9FD354F303452BE100000089CDA76F", FLAVOR_NAME: "temp", OWNER: "MASAD", APP_ID: "IW26", STATUS: "IGNORED", …},    {FLAVOR_ID: "9894FC5286F14271E100000089CDA76F", FLAVOR_NAME: "Department Heads", OWNER: "MASAD", APP_ID: "SE38", STATUS: "PROCESS", …},    {FLAVOR_ID: "2D070F53DF372B33E100000089CDA76F", FLAVOR_NAME: "SAP Release", OWNER: "MASAD", APP_ID: "ME23N", STATUS: "PROCESS", …},    {FLAVOR_ID: "7ED8845427A5AC64E100000089CDA770", FLAVOR_NAME: "asug demo", OWNER: "MASAD", APP_ID: "KS03", STATUS: "PROCESS", …},    {FLAVOR_ID: "F1ADB9542D034F23E100000089CDA76F", FLAVOR_NAME: "temp", OWNER: "MASAD", APP_ID: "SM50", STATUS: "PROCESS", …},    ....
]

 

As before we're going to build a string of HTML to send to an HTMLViewer control, and we need to start with the usual boilerplate to load the UI5 libraries:

 

var tableHTML = '<html> <head<\<script src="/ui5/1/resources/sap-ui-core.js" \    id="sap-ui-bootstrap" \    data-sap-ui-libs="sap.ui.core,sap.ui.commons,sap.ui.table" \    data-sap-ui-theme="sap_goldreflection"> </script> \<script>';

 

Now we build the table object and add the columns we need - we don't need to display in the table all of the columns in the "contents" array, and in fact I don't here:

 

tableHTML += '\
var oTable2 = new sap.ui.table.Table({ \     title: "Personas 2 migration status", \     visibleRowCount: 15, \     columnHeaderHeight: 30, \     selectionMode: sap.ui.table.SelectionMode.Single, \
}); \
\
oTable2.addColumn(new sap.ui.table.Column({ \     label: new sap.ui.commons.Label({text: "Flavor ID"}), \     template: new sap.ui.commons.TextView().bindProperty("text", "FLAVOR_ID"), \     sortProperty: "FLAVOR_ID", \     filterProperty: "FLAVOR_ID", \     width: "200px" \
})); \
oTable2.addColumn(new sap.ui.table.Column({ \     label: new sap.ui.commons.Label({text: "Flavor Name"}), \     template: new sap.ui.commons.TextField().bindProperty("value", "FLAVOR_NAME"), \     sortProperty: "FLAVOR_NAME", \     filterProperty: "FLAVOR_NAME", \     width: "200px" \
})); \
oTable2.addColumn(new sap.ui.table.Column({ \     label: new sap.ui.commons.Label({text: "Owner"}), \     template: new sap.ui.commons.TextField().bindProperty("value", "OWNER"), \     sortProperty: "OWNER", \     filterProperty: "OWNER", \     width: "200px" \
})); \
oTable2.addColumn(new sap.ui.table.Column({ \     label: new sap.ui.commons.Label({text: "Transaction"}), \     template: new sap.ui.commons.TextField().bindProperty("value", "APP_ID"), \     sortProperty: "APP_ID", \     filterProperty: "APP_ID", \     width: "200px" \
})); \
oTable2.addColumn(new sap.ui.table.Column({ \     label: new sap.ui.commons.Label({text: "Status"}), \     template: new sap.ui.commons.TextField().bindProperty("value", "STATUS"), \     sortProperty: "STATUS", \     filterProperty: "STATUS", \     width: "200px" \
})); \
';

All of the columns here are simple text fields, but you can of course use any of the available types - checkboxes, etc - where appropriate.

 

Next we create a data model and bind the table to it:

 

//Create a model and bind the table rows to this model
tableHTML += 'var oModel2 = new sap.ui.model.json.JSONModel(); \
oModel2.setData({modelData: ' + JSON.stringify(contents) + '}); \
oTable2.setModel(oModel2); \
oTable2.bindRows("/modelData"); \
';

 

Finally, we place the table control on the page and finish off with the usual HTML, and of course send all this HTML to the HTMLViewer control:

 

tableHTML += 'oTable2.placeAt("content");';

tableHTML += '</script>';
tableHTML += '</head>';
tableHTML += '<body class="sapUiBody" supportedthemes="sap_corbu" role="application">';
tableHTML += '<div id="content"> </div>'
tableHTML += '</body></html>';

session.findById("wnd[0]/usr/htmlViewerPersonas_1447866610072").content = tableHTML;

 

After editing the screen to remove the original table and add a suitably sized HTMLViewer control and running this script, you end up with a screen like this:

 

Screen Shot 2015-11-26 at 14.34.57.png

 

This gives you the usual UI5 sorting and filtering capabilities when clicking on the column headings. And, of course, UI5 tables have many more capabilities than this, including fixed initial columns, different column types, and much more. This example is placing a table on the same screen as the data, and in this case the original data is in a nice table already so there's not a lot of point. There's no reason, though, why you can't create the UI5 table on a different screen. That's exactly the scenario I originally wanted in my "HTML tables" blog - copying a table from one screen to another. This is a much nicer looking solution for that scenario.

 

For the moment this table is "read only". There's no way to interact with it to enter or change data, or to trigger events when rows or cells are selected. I think at least some sort of interaction is possible but I haven't got it working yet. A blog will follow in due course if/when I make it work!


New ABAP Editor for SAP GUI for Java

$
0
0

This is an old, recurring topic. While we know that there is no support for the new ABAP editor in the Java SAP GUI, I would be interested to know what it would take to add this support.

 

Is it technically feasible? How many developers would have to show interest for the Java SAP GUI development team to add this support?

MM42 FUNCTION: WRF_MATERIAL_MAINTAINDATA_RT

$
0
0

 

 

 

Hellogurus
Iput the sales orders various unitsof sales persalesorganizationwith thesebasic facts:

 

 

 

 

 

ImodifiedinMM42, I keep itwelland it worksperfectly

 


 

 

 

 

 

My problem isthat I am creating articles withthefunctionWRF_MATERIAL_MAINTAINDATA_RT  but do not knowwhat to put inwhat structurefor me to stayasthe second picture....italways putsmein this way:




Thank you
A greeting

SAP GUI 7.40 PL 5 Hot Fix 1 BUG

$
0
0

Anyone else have this issue?

 

Latest GUI, going in to T-CODE So10

 

 

 

 

 

Reproduce Error:

 

 

Execute T-Code So10

 

 

Put in * and click the box.

1.jpg

 

 

Put in * in the Text field and click execute

2.jpg

 

 

Select any text names

 

3.jpg

 

4.jpg

 

 

Click execute

 

5.jpg

 

 

Click the change text crayon

 

6.jpg

 

 

 

ERROR

 

 

Click OK 10 times.

 

7.jpg

 

 

 

Screen changes to text editor and must click 6 times on OK

 

 

You cannot click anywhere on the screen and the SAPEDIT
error appears. Must close off session to get out of error loop.

 

8.jpg

Advice?

 

GUI 7.30 works fine

Personas Error in Browser Console

$
0
0

HI

While executing a particular transaction in SAP Screen Personas, the screen is getting refreshed automatically after executing it from Initial screen. Following error is coming in the browser console:

 

 

914468 ERROR Sap.Imagineering.Personas.Base.Controller.UISession->ForceReload -

Reloading the screen failed.

Sap.Imagineering.Personas.ItsConnector.BatchRequestFailedException: Batch request failed. [-103] failed to fire action.

   at Sap.Imagineering.Personas.ItsConnector.Connector.PostXmlBatch(Session session, HttpStatusCode& status)

   at Sap.Imagineering.Personas.ItsConnector.Connector.ExecuteBatch(Session session, String controlId)

   at Sap.Imagineering.Personas.ItsConnector.Connector.ExecuteBatch(String sessionId, String rootControlId)

   at Sap.Imagineering.Personas.ItsConnector.Connector.ExecuteBatch(String sessionId)

   at Sap.Imagineering.Personas.Base.Controller.UISession.ForceReload()

 

 

999476 ERROR Sap.Imagineering.Personas.Common.Profile.ScreenState->IsValid -

Invalid root element.

 

 

Please help as soon as possible.

Function Module call failed in personas 3.0

$
0
0

Hello Team,

 

I am calling remote enabled FM from personas 3.0 javascript. when I click on first time I am getting this error "Function module call failed", when I click on second time it is navigating to the flavour. could u please suggest me the solution.

 

Regards,

Sunayanah

SAP System not coming up. And showing error "ORA-27102: out of memory" while starting Database

$
0
0

Hi All,

 

One of my SAP System "PI2" is down.

When i'm trying to start the Database it is showing the error like "ORA-27102: out of memory".

i had tried to start it from Secondary DB also even it is also showing the same error.

In SAP MMC  "Disp+Work" processes is also not getting started, this is a Dual stack system.

 

Please help me how to solve this issue.

 

I'm attaching the screenshot of the error which i had got.

 

Regards,

Mythili

SAPGUI: Graphical Form Painter could not be called (FORMPAINTER_CREATE_WINDOW, )

$
0
0

Hi,

 

After upgrading to SAPGUI 7.40 SP5 (Release: 740 Final Release, File version: 7400.2.5.1110, Build:1614083, Patch level: 5) I got the following error message in SE71 when I try to use the Graphical form painter:

 

Graphical Form Painter could not be called (FORMPAINTER_CREATE_WINDOW, )

Message no. TD245

Diagnosis

An error occurred structuring the graphical Form Painter.

System Response

The system switches to the alphanumeric Form Painter.

 

Before it worked fine with SAPGUI 7.30. No relevant OSS note was found. OS: Win 7 Enterprise SP1 64bit.

 

Any hint what to check (apart from opening an OSS message)?

 

Thanks,

Peter


Screen Personas 3.0 Change Backgroundcolor of a flavor via Scripting

$
0
0

Hi Experts,

 

is there a way to change background color of a flavor dynamically with Javascript ?

I want to change backgroundcolor depending of the system-id.

Thanks and regards.

Juergen

Could not able to download due to SAP GUI security

$
0
0

Hi Everyone,

I  am working on a Report Program for downloading multiple smartforms. When i try to enter my package and start downloading ,a popup comes up

like this

The pop up says : "An action triggered by the server was denied based on a rule. Do you want to see a list of the actions triggered in the last communication step? YES, NO"

 

What should i do to avoid this.

 

 

 

Regards,

Sivaganesh

Can't install Calsync 2.0 in SAP GUI 7.40

$
0
0

Hi,

 

We are testing SAP GUI 7.40 but i can't enable SAP Calendar Synchronization Add-In, it tells me that i haven't office 2007 sp3, but I got it...



Issue with Assign Icon Search

$
0
0

Hello Team,

 

Currently when I am trying to assign new icons. While selecting the Assign icon from the edit tool it show the box with message " No Group Selected"
.

Whereas on the other system I am able to see it. (Both the system have same patch level)

 

Please guide me if I need to make any changes in the system setting.

 

Screen with System Having Issue:

2015-11-19_17-05-55.png

System working fine:

2015-11-19_17-04-41.png

 

Thanks,

Chakravarti

Flavor is Locked by User XXXXX, Please click here to unlock it. Personas 3.0

$
0
0

Hello Team,

 

Since, while creating the flavor, after i save and start editing flavor. I get the error of " Flavor Locked".

 

If I click on " Take action" It get into edit mode but the option of Save is Disable.

 

My current system is updated with the SP2 for Personas 3.0.

 

 

Kindly, Please help with this.As we are into development phase at Client local.

 

Thanks,

Chakravarti.

 

Lock Issue.png

Viewing all 3616 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>