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

Embedded report under Account Tab

$
0
0

Hi All,

 

I have created a cloud data source, created a report and embedded the report into Customer TI under a new Tab. Now, if i run the report under reports section with Account ID as input, it works fine. However, the same report under Account TI gives me a message "No report data available to display; Check the selection".

Report_1.jpg

Now if I go and analyse the report, the Account ID is there but on pressing the Go button, i do not see any results

Report 2.jpg

 

These are my settings when I designed the report

Report 3.jpg

 

Report 4.jpg

 

So under the Selection, Integ ID1 is mapped to Account ID, however, it doesn't display any data.

 

I would really appreciate any pointers.

 

Regards,

Sandeep


Re: Tag not displaying the post in the space

$
0
0

yes, I know

I opened a ticket: SOC-2505

I will further update this thread with any progress

Handling Dates dynamically

$
0
0

Dear Experts.

 

Since i am very new to design studio i am looking for the way in design studio that i can calculate the current month / year / quater? i am designing a dashboard on which i want to send the dates dynamically to some of the data source in order to calculate the date for the specific time period.

 

Also is there any possibility that i can pass the filter to the year by giving the range the same we are providing in bex query designer i.e. <=currentYear or >currentYear-3.

 

Any help will be highly appreciated.

 

kind regards,

Re: LT10

Re: Netweaver JAVA 7.4 installation distributed environment

$
0
0

Yes, I tried to changed the owner but it gives that invalid user. Check the above screen shot. I SCS instance the profile has been read write access for sidadm. Let me know whether I have to create sidadm user in OS level.

 

Regards,

Jituda

Re: Design Studio 1.6 SP1 with Universe as data source

$
0
0

Marius - can you provide some screen shots to help the community better understand/help?

Use the camera icon to upload

 

My initial thought is yes you would need 4 data sources in your app but screen shots may better help the understanding

Re: Change Material in Material Master

$
0
0

Check out the CLIENTDATA structure in that case..

Re: Service price history

$
0
0

Hello Sir,

 

Thank you for your time and your answer, however I cannot see how I would use t.code ML45 to display the history of the price. Can you please give me more information?


Thank you.

Samah.


Re: Change Material in Material Master

$
0
0

Yes BAPI_MATERIAL_SAVEDATA allows to change some values in MARA, put the values you want to change in corresponding subfield(s) of parameter CLIENTDATA, set an X in the field(s) with same name in parameter CLIENTDATAX. Fill HEADDATA, call the BAPI, look at received RETURN structure, and if there is no error (not TYPE = 'E' or 'A') execute BAPI_TRANSACTION_COMMIT else ROLLBACK.

 

Hint: You can identify field name in BAPI parameter thru data element, or identify/create a mapping FM (transaction BDBS, e.g. CFX_MAP2E_MARA_TO_BAPI_MARA)

 

But first read the BAPI documentation, BAPI are usually well documented.

 

Regards,

Raymond

Re: SAP Fiori Work Manager

$
0
0

Hi,

 

Can you share the link of the RoadMap which you are referring to?

 

Regards,

Nagesh

Communication error SRT: Empty SOAP Message received

$
0
0

HI Experts,

 

i am using PI 7.1 dual stack, In my scenario we are using receiver XI adapter channel, we are not using sender adapter as it is on the same stack.

 

in SXMB_MONI we are getting the following error.

 

 

ERROR.png

 

In NWA - Logs and traces, we are getting following error

 

Message:Failed(javax.management.MBeanPermission,*#**:j2eeType=trace,name=EndToEndCentralMBean,*],isActive,getGuidByName,getTraceLevelByName,getTraceLevelByName,importTrace,isFileExistsLocally,removeTraceFile)java.lang.reflect.InvocationTargetException

New Error.png

Regards

Ravi

Re: Verifying Installation Introscope V8

$
0
0

Thanks danny.. I too faced the same issue and was successful when tried with root user

Re: F110 - Do not bring the CNPJ Number in text file

Re: Unable to add java stack system in Solution Manager - Error No Software component versions assigned

$
0
0

Hi,

 

 

Cross check if  verification is green in LMDB.

 

Thanks,

 

Harsh

Re: UNPLANNED MATERIAL MOVEMENT DOES NOT ABLE TO VIEW IN CORT TCODE .

$
0
0

Hello,

 

 

This is as per the standard SAP system design process order can give you Unplanned good movements details as per the order type dependent parameter setting of COR4

I have no idea whether CORT  display the unplanned good issue.

Please check by implementing SAP note

   1511648 - Unplanned goods movements are not displayed

 

 

Best Regards,

R.Brahmankar


Re: Material Staging using 281 Network demand

$
0
0

I'm beginning to feel that you are correct. All I have read so far is that in order to stage materials from a warehouse to a PSA you have to have production orders and their operations as triggers to initiate staging.

 

I will keep looking and I am going to try amending the 'requirement type' for movement type 319 (Replenishment for Production) from P - Production supply to W - Network and place some demands and see how that goes.

 

Many thanks for response

Re: Spool: bad performance with Access Type G

Re: How to Convert XSTRING to XMLstring.

$
0
0

Hi,

 

I am not sure that this is what you need but some code:

 

*----------------------------------------------------------------------*

FORM test_02

  USING

    xml_string TYPE xstring .

 

  DATA: ob_ixml TYPE REF TO if_ixml. " Interface of Factory Object

 

  ob_ixml = cl_ixml=>create( ).

 

  DATA: ob_ixml_streamfactory TYPE REF TO if_ixml_stream_factory. " Factory for Streams

 

  ob_ixml_streamfactory = ob_ixml->create_stream_factory( ).

 

  DATA: ob_ixml_istream TYPE REF TO if_ixml_istream. " Input Streams

 

  ob_ixml_istream  = ob_ixml_streamfactory->create_istream_xstring( string = xml_string ).

 

  DATA: ob_ixml_document TYPE REF TO if_ixml_document. " XML Document in DOM Representation

 

  ob_ixml_document = ob_ixml->create_document( ) .

 

 

* If you need to parse

  DATA: ob_parser TYPE REF TO if_ixml_parser. " Parser

 

  ob_parser = ob_ixml->create_parser( stream_factory = ob_ixml_streamfactory

                                      istream        = ob_ixml_istream

                                      document       = ob_ixml_document ).

 

  ob_parser->parse( ).

 

  DATA: ob_ixml_stream_factory TYPE REF TO if_ixml_stream_factory. " Factory for Streams

  DATA: ob_ixml_ostream  TYPE REF TO if_ixml_ostream . " Output Streams

 

 

* If you need xstring output

*  DATA: xstring TYPE xstring.

*  ob_ixml_stream_factory = ob_ixml->create_stream_factory( ).

*  ob_ostream = ob_ixml_stream_factory->create_ostream_xstring( xstring ).

*  ob_ostream->set_pretty_print( abap_true ).

*  ob_ixml_document->render( ostream = ob_ostream ) .

 

  DATA: debug TYPE string.

 

* For debug purpose only

  ob_ixml_stream_factory = ob_ixml->create_stream_factory( ).

  ob_ixml_ostream = ob_ixml_stream_factory->create_ostream_cstring( debug ).

  ob_ixml_ostream->set_pretty_print( abap_true ).

  ob_ixml_document->render( ostream = ob_ixml_ostream ) .

 

* At this point we have XML

* Look at variable debug using the XML view .

* See the content of count vs the XML output using tabular view

  BREAK-POINT .

 

ENDFORM.

*----------------------------------------------------------------------*

Re: Regarding Parameter ID for Planning plant

$
0
0

Hi Sujeet,

 

I agree with your statement that SAP wont support on standard program modifications. But specially in this case, you will have to get an access key to resolve this issue.

 

OR

 

Another solution is to write an enhancement in all standard screens ( IE01/IL01 etc.) where you will have to populate Planning plant field based on SU3 data (IWK parameter content)

 

Regards,

Amol

Re: Deploy Solution to existing environment

$
0
0

Is there any plans in the future to make it available?

Or I need to modify the deployed environment's settings to match our development environment?

Viewing all 8357 articles
Browse latest View live


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