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

Re: Now my turn for a Friday anecdote (copying Lukas W.)

$
0
0

They forgot to start with 'Dear gurus'.

For the full immersion experience I hope you'll also need to complete the 'Positive Call Closure' survey consisting of 'Was our service awesome or super-awesome?".


WebIDE with XML Views: StackedColumn default aggregation

$
0
0

Hi,

 

I have sometimes trouble with XML Views. A lot controls need a default aggregation, but its hard to find it (any links?)

For example, i <l:Grid></:lGrid> needs a <l:content></content> before you can place content in it. (xmlns:l="sap.ui.layout")

 

Now i got the same trouble with sap.viz.ui5 controls.

 

Here my Example:

 

Namespaces

xmlns:viz="sap.viz"

xmlns:types="sap.viz.ui5.types"

xmlns:data="sap.viz.ui5.data"

 

StackedColumn control:

 

            <viz:ui5.StackedColumn id="StackedColumn" width="400px" height="600px">

                <viz:title>

                    <types:Title visible="true" text="Tickets"/>

                </viz:title>

                <viz:axis>

                    <types:Axis name="xAxis">

                        <types:Axis_title visible="true"/>

                        <types:Axis_lable hideSubLevels="true"/>

                    </types:Axis>

                    <types:Axis name="yAxis">

                        <types:Axis_title visible="true"/>

                        <types:Axis_lable visible="false"/>

                    </types:Axis>

                </viz:axis>

                <viz:dataset> 

                    <data:FlattenedDataset>

                         <viz:dimensions>

                            <data:DimensionDefinition axis="1" name="Days" value="{Days}"/>

                        </viz:dimensions>

                        <viz:measures>

                            <data:MeasureDefinition name="Critical Tickets" value="{Ticket_Crit}"/>

                            <data:MeasureDefinition name="None-Critical Tickets" value="{Ticket_None_Crit}"/>

                        </viz:measures>

                    </data:FlattenedDataset>

                </viz:dataset>   

            </viz:ui5.StackedColumn>

 

 

What I tried:


<viz:content></viz:content>

<viz:ui5.content></viz:ui5.content>

 

Also i tried to remove all <viz:title>, <viz:axis> and <viz:dataset>  tags.

 

All i get is this Error: Uncaught Error: Cannot add direct child without default aggregation defined for control sap.viz.ui5.StackedColumn

 

Thanks for any clue.

Dominique

Re: Web Ide and Backend

$
0
0

hi jamie,

 

i tried this before result was app did not run.

 

i cannot test again when starting web ide which has now version 1.5.1

i get the error

Unable to load. Do you want to reset the view to the default values?

 

Press ok or cancel does the same, no views etc. are editable at the moment.

 

why i wanted to try an older ui5 lib was because a deployed fiori starter app had problems with our backend version 1.20.11 - icontabbar throws exceptions and die not work, also on phone device back button did not work, so thats the reason for that question.

we will update our backend in den next weeks (the ui add on), so maybe it will work than.

 

regards oliver

Version:1.5.1

Re: How To Redirect to a site after logging into the R3 server?

$
0
0

BUMP

 

Is this not possible or what?

Re: Add Notes to initial UDM_SPECIALIST screen

$
0
0

Hi Shravan,

 

In order to get the customer open items, you need to run the below two transactions.

 

1) FDM_COLL_SEND01 ( Program :FDM_COLL_SEND_ITEMS, for Periodic data transfer)

2)  UDM_GENWL (Program : UDM_GEN_WORKLIST, to generate the worklist)

 

Thank you,

Krishna

Re: Table Databinding

$
0
0

the property need to be added wih the model name

 

<ObjectIdentifier

                  title="{moelName>/SoId}"/>

              <Text

                 

Re: Approval Process for deviation from Credit except Certain Terms

$
0
0

It is still looking to get approved for that type of terms.  I have tried it with both the Deviation from Credit Limit checked and not checked.  Any other ideas?  Thanks for the help.  Appreciate it!

Terms.PNG

Re: Triggering email without going through SAP queue

$
0
0

Hi Munu,

 

You can CL_BCS classes to send email.

 

However if you want to send it immediately to the recipient you can schedule job 'RSCONN01' for every I minute or whatever time frame you want so that it will fetch all the mail waiting for send status and send it to the recipient. You can consult with the basis person for the same.

 

Santosh


Re: How to offer user choice of params

$
0
0

Hi Paul,

Are you filtering records using record selection  ?  If so, how is your condition ?

 

Are you using like :

 

If HasValue({Parametervalu}) then {Parameterval} = {databasefield} else true

 

 

-Sastry

Error "Successor installed for SAP Travel OD INTEGRATION 4.0"

$
0
0


Good day!

 

I am still using the Solution Manager 7.01 with ST-400 SP 0026. We are installing (ESS) HR RENEWAL 1.0 and we were successful in implementing it in sandbox, developemnt and quality assurance. I am already generating the XML for production system, but I am having an error message "Successor installed for SAP Travel OD INTEGRATION 4.0". I did not encounter this error in all the other environments. Is SOLMAN more strict on production environments? I am reading some documents and came across a landscape verification too - add on.

 

It seems the SMSY is not detecting all the other products thus causing the error.

Please advise if I am in the right track of resolving the issue. May I also ask what you did to resolve your issue?

 

Regards

 

Joel

Re: SAP Blocked 4 sessions - what does this mean? How to correct?

$
0
0

Hi,

 

Check with alert management system. If you find above query subject in alert management, just mark is as inactive.

 

If you really need this alert, change frequency of alert.

 

Thanks & Regards,

Nagarajan

Re: Patching Solution Manager 7.1 to SPS12 SUM requires newer DBSL for ASE

$
0
0

lenin,

 

what SUM version are you using. I tried again using SUM SP11 patch 9 but still getting the same error.

 

did you use the 7.21 kernel or 7.21 EXT kernel ?

Also, did you upgrade to latest dbsl (version 618) or no ?


Thanks

 

BV

Re: Customers are shown in Worklist FSCM, but not in My Worklist FSCM

$
0
0

You can also use parameter ID : UDM_WL_MAX_ITEMS

Re: numeric column in alv OO cl_salv_table without commas (thousands separator)

$
0
0

Hi Santosh, thanks but It not works.

 

Here a example code my problem: The correct value is 12500.15 but numeric.

 

REPORT  zprueba3.

 

TYPES: BEGIN OF ty_test,

     t_curr TYPE PRBETRG,

     t_c TYPE char15,

     t_f TYPE f,

     t_i TYPE i,

     t_p TYPE p LENGTH 15 DECIMALS 2,

     END OF   ty_test.

 

DATA tt_test TYPE TABLE OF ty_test.

FIELD-SYMBOLS <fs> TYPE ty_test.

 

DATA:

             lo_alv_table TYPE REF TO cl_salv_table.

 

append INITIAL LINE TO tt_test ASSIGNING <fs>.

 

<fs>-t_curr = '12500.15'.

<fs>-t_c = <fs>-t_curr.

<fs>-t_f = <fs>-t_c.

<fs>-t_i = <fs>-t_c.

<fs>-t_p = <fs>-t_c.

 

CALL METHOD cl_salv_table=>factory

   IMPORTING

     r_salv_table = lo_alv_table

   CHANGING

     t_table      = tt_test.




 

lo_alv_table->display( ).



Re: Implementing Badi for CRM IC

$
0
0

Hi Subin,

 

I would actually ask WHY do you want to suppress the creation of the Interaction Record? Doing so is actually not recommended as a lot of functionality in the Interaction Center relies on the IR including reporting; creating follow-on business transactions; and INTO/INTA linking of emails, service requests, solutions/knowledge articles, etc.

 

A better idea would just be to remove the IR object from the screen so that agents don't see it and don't need to fill it out, but still allow it to be created in the background.

 

You can find a little more info in this blog post by Gert Tackaert, "Everything you need to know about the Interaction Record..."

 

Regards,

John


Re: No Transactions for Vendor in a Report

$
0
0

Try this for six months:

 

SELECT T0.CardCode, T0.CardName

FROM ocrd T0

WHERE T0.CardType= 'S' and T0.CardCode NOT IN (SELECT cardcode FROM OPOR WHERE DateDiff(dd,docdate,GetDate()) < 180)

 

Thanks & Regards,

Nagarajan

BRF+ and CHaRM issue with transports

$
0
0

hello

 

recently we have started using CHaRM to manage our transports.

 

we created the transport under SOLMAN.

 

developed our application and transported to Quality Assurance System for testing.

 

a new transport was created to accommodate any issues identified by test team.

 

when we try to activate any changes to the new transport we get CSOL error message.

 

if we activate again the 'activation successful' message is displayed but when we check the transport via SE09 the changes are not written to the transport.

 

has anyone experienced this issue?

 

if so, how did u resolve it?

 

cheers.

 

pas.

Re: Header condition discount-value on total amount

$
0
0

Hi Pratheep.

 

You must mark it as "Group Condition" in img V/06 transaction.

Why does Jam API for creating tasks doesn't work?

$
0
0

In S&OP we're using the Jam REST API for creating tasks. It returns HTTP code 201, but the response body is empty and when we open the JAM UI we don't see the new tasks. Our code is working well with another Jam instances. Here's an example (with an actual data):

 

REST POST

URL: https://jam12.sapjam.com/v1/activities/10725/action_items

Headers:

Content-Type   application/xml

Authorization    OAuth <token>


Body:

<?xml version="1.0" encoding="UTF-8"?>

<action_item name="1-st step STEF">

  <title>1-st step STEF</title>

  <description>Please complete the task for the process step "1-st step STEF". This task is part of the process "STEF 11/07/2014" and is automatically generated as part of the SAP Sales and Operations Planning process model.</description>

  <due_date>2014-11-09</due_date>

  <assignments>

  <assignment>

  <participant email="sfAdmin@successfactors.com" />

  <status value="none" />

  <note />

  </assignment>

  </assignments>

</action_item>


Seems like a bug, reproducible with certain Jam instances. Can you help me with this?

Re: General Ledger System Variables

$
0
0

Just figured it out using trial and error.

 

Periodic Opening Balance SYS = 102    

Periodic Closing Balance SYS = 108

 

Total Transactions Section

 

OB SYS = 156

Debit SYS =125

Credit SYS = 124

Total SYS = 181

Viewing all 8851 articles
Browse latest View live




Latest Images

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