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

Re: Cannot right click to close Goods Receipt PO, error msg no matching records found 'g/l accounts' (oact) (odbc-2028) message 131-183

$
0
0

Hi,

 

It was solved after determined account code for goods clearing account in item group ^^

 

Thanks


Re: Schedule Reports Overview Error

Re: Fully qualified domain name ...

Re: onAfterRendering vs. JSONModel.loadData()

$
0
0

maybe you want to try

 

heatmap.onAfterRendering = function() {
     if (sap.viz.ui5.Heatmap.prototype.onAfterRendering) {

         sap.viz.ui5.Heatmap.prototype.onAfterRendering.apply(this);

     }

     var model = this.getModel();

     // check if model has data, if yes, do something

}

 

 

-D

Re: Crystal Reports Viewer on webforms rendering issue

$
0
0

Hi Sanjay

 

 

I'm not able to see the report in an app as it prompts me for parameters. I think to stop it from prompting I need you to drill down into Group header #1A, then go to page 2, then save the report an reattach it. That may stop it from prompting.

 

 

Oh, and drill into the subreport too please.

 

 

 

- Ludek

 

Message was edited by: Ludek Uher

Re: Complex Table Drop Down - Initial Value

$
0
0

Michel,

What client platform are you using?  Special value is buggy when using a blank (empty) value.  You are approaching it correctly by setting the initial value on the transaction property.  Set a special value there of " " (blank space) with a display value of "-NONE-" on the complex table property.  Then set the initial value to a constant of " " (blank space).  Now the screen field should default to "-NONE-".  You may need to remove the blank space on the backend processing code and set it back to an empty string before posting.

 

Jason Latko - Senior Product Developer at SAP

Not able to display subtotal and subtotal text using SALV Factory method

$
0
0

Hi,

 

I am creating a report using cl_salv_table, factory method. The main two fields (among others) are product and amount. I want to show subtotal of the amounts for each product and before each subtotal I want a text to be shown (on the same row).

 

Something like:

 

Product              Amount

1                               10

1                               20

 

Subtotal text              30

 

2                                 5

2                               10

 

Sutotal text                 15    and so on ...

 

Searched various discussions but not able to get the right answer. The get_aggregations or get_sorts does not seem to be working or I am not using them properly. I have tried with creating a hidden column in the internal table with fixed value like "Subtotal" but again not showing the desired result. Please help (urgent).

 

Thanks.

Re: MDG-F 7.0 Data Replication using SOA

$
0
0

Once you CR is approved, and data is transferred in PI, you can send the notification.


Re: ZXPCAU03 user exit in MIRO

$
0
0

Have you looked at the "DISPLAY LIKE" parameter for Message?  Maybe if you Display like 'W'.

 

The other option is to try raising the message. 

 

Perhaps an FM or class is catching it and discarding it.

 

Neal

Re: Possible problem with isnumeric function

Re: Is there any bug in my grouper code?

$
0
0

If you can't get rid of the groups, then try just putting the crosstab in the report footer instead of in the group footer.  Or, if you have multiple levels of grouping, you could try putting it in the group footer that is one level "up" in the hierarchy.

 

-Dell

Re: onAfterRendering vs. JSONModel.loadData()

$
0
0

Hi Micha.

 

You can try to use something like this:

 

onInit : function() {     this.getView().addEventDelegate({          onBeforeShow : function(evt) {               //do stuff          },          onAfterShow : function(evt) {               //do stuff          }     }, this);
},

Make to Order - Non Valuated Scenario

$
0
0

Hi Experts,

 

we are implementing MTO - Non Valuated Scenario for our client with Product Costing (Moving Average Price Method).

 

Client wants to see Planned Cost of Finished Product at sales order level which will come from Planned Activity Prices at the time of Sales Order Creation when we execute Costing & Marking and the data gets updated in Table EK02 (Already Tested)

 

Client also needs to see Actual Cost of Finished Product at sales order level which will come by the end of the month at the time when revaluation of Process Order will be executed and this process order will be settled to Sales Order. (Need to know any Condition Type where this data flows because in report KKBC_KUN, it shows that actual cost is settled to Sales Order Document from Process Order)

 

The Sole Reason for this kind of requirement is that client wants to see CO-PA Report which should show PLANNED COST, ACTUAL COST & REVENUE for MTO Sales and if we can fetch those data to condition types then it will be easy for us to transfer this data to CO-PA Reports.

 

Please guide us and solution or work around to solve this issue!!!

 

 

Regards,

Zain Bashir

Re: Open SQL with Custom fields in Standard table

$
0
0

Dear Abhijit,

 

If I login in the system first time, and run the report, it shows me wrong data and after that, I just press Back and execute the report, it shows correct data for the same parameters.

If I change the parameters value(Like date) at every execution, report shows wrong data every time.

After the first execution, all next executions shows correct data for same parameters.

If I logged out and login after 4-5 hours and run the same report with same parameters, the report again shows me wrong data.

 

Take an example:

>>>Login.

1. I run the report with date 10.08.2014 = Return wrong value.

2. I run the report with date 10-08.2014 = Return correct value.

3. I run the report with date 15.08.2014 = Return wrong value.

4. I run the report with date 16.08.2014 = Return wrong value.

5. I run the report with date 15.08.2014 = Return Correct value.

>>> Log out and Login after 4-5 hours.

6. I run the report with date 10.08.2014 = Return wrong value.

7. I run the report with date 10.08.2014 = Return correct value.

 

Regards.

how to write a recursive function to create a treeview from data in datawindow?

$
0
0

I have a parent-child data in a datawindow from a table mytab(id, pid....)

Then I want to use to data to create a tree in treeview.

 

 

I try to use recursive function, but have problem with datawindow as I use filter to change the data in datawindow.

 

 

here is my code:

 

 

    of_addnode(treeviewitem node, rootrow):

   

    int li_rows,li_newitem, i

    treeviewitem li_tvitem

   

    dw_1.SetFilter("pid = " + string(node.data))

    dw_1.Filter( )

   

    li_rows =  dw_1.RowCount()

   

    if li_rows = 0 then

    return

    end if

   

    for i = 1 to li_rows

    li_tvitem.level = node.level +1

    li_tvitem.data = dw_1.GetItemNumber(i,"id")

    li_tvitem.label = dw_1.GetItemString(i,"description")

    li_tvitem.pictureindex = 1

    li_tvitem.selectedpictureindex = 2

    li_newitem = tv_1.insertitemsort (rootrow, li_tvitem)  // insert a new node

    of_addnode(li_tvitem,li_newitem)

  

    dw_1.SetFilter("pid = " + string(node.data))  //restore data back to filter, problem here. tree will have duplicate item

            dw_1.Filter( )

    next

 

 

how to create a recursive function from one datasource datawindow for this case?


Re: Process chain taking too long to complete

$
0
0

Hi Amit

 

First DSO has SID generation turned on , whereas for second DSO, it is turned off. we have not applied delete/create indexes on cube.

DB stat is applied on second DSO. we are using Multiprovider for reporting based on the cube.

 

yes routines are applied  ...the routines..like concatenation, constant value in result, Move statements, we have start routine wherein we are using internal tables.

 

We are of the view to include Deletion of Requests from the Change Log table.

 

My queries:

If we turned off the SID generation in first DSO what will be the impact.

If we apply WO DSO instead of Standard, how can we take care of the delta records which are updating to cube,  since WO-DSO does not have change log.

 

Your inputs are highly appreciated.

 

Regards

V


Re: Report by Sales Office including Material

$
0
0

Dear Jose Antonio,

 

Thanks by the quick answer, could please give a little more info about it? I mean, specific guide to create the own structure and how can i call it from MCSI?

 

I shall appreciate it a lot.

Regards

OP

First Article Inspection Report for Quality

$
0
0

Dear all,

My Client want to  propose a solution involves creating a report containing data from CAMS and SAP ECC to identify  the parts that have not been used in a Production Plan within the last 2 years to flag for First article Inspection report. Please help me in explaining the complete data flow in SAP BW on Hana.


Thanks in advance

Ranjith

Passing Bean in AbstractPortalApplication

$
0
0

Hello Experts,

 

I have worte this Code:

 

public class PopupIview extends AbstractPortalComponent {

     public void doContent(IPortalComponentRequest request, IPortalComponentResponse response) {

 

          PopupBean ruleBean = new PopupBean();

                    request.getServletRequest().setAttribute("rule", ruleBean);

                                       

                    ruleBean.setMessage(rule.getMessage(user));                   

                    // fill your bean with data here...

 

                    IResource html = request.getResource(IResource.JSP,

                            "pagelet/popup_ui.jsp");

                    response.include(request, html);

     }

}


and this JSP-Page starting with this


<HTML>

<jsp:useBean id="rule" scope="request" class="ui.PopupBean" />


But while executing this, in the JSP-Page the rule-Bean is empty. I saw that it has an other Obejct-ID. So why my Bean from the portal application isn't used?


Thanks and Greetings,

Thomas



How to load SAP UI 5 libraries in Cordova android build?

$
0
0

Hello all,

   I am trying to wrap my SAP UI 5 app with cordova to build an android app. My UI5 app is working fine when not wrapped with cordova. I have configured cordova successfully and I am able to see the cordova start screen in android. But I am unable to see UI5 controls in my android device. I am constantly getting an error in the logcat of eclipse (android configured). the error snapshot and my directory structure is attached. appreciate your positive response.Error_Android.PNG

 

My directory structure of android project in eclipse is as follows:

 

directory.PNG

Viewing all 8594 articles
Browse latest View live




Latest Images