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

Re: sxmb_moni erros are not getting mails


Re: DatePicker Control SAPUI5

Re: how to control annual budget 110% and overall budget 100% in the same time for project

0
0

Jie, now it is quite obvious that availability control is set to annual & tolerance limit to 110% so system will not check overall budget .

 

Discussion over percentage is misleading so lets assume current fiscal has budget of value 100 $ & next fiscal 120 $..overall budget(total of years) is 220 $

 

 

Current fiscal year - budget -100$ , allowed tolerance limit - 100 + 10% = 110 $

next fiscal year - budget - 120 $  , allowed limit - 120 + 10% = 132 $

total actual allowed = 242 $

it crosses the overall value of 220$

Self explanatory, it is illogical to allow exceed annual budget 110 % each year and still client want overall value under control. It is misunderstanding the concept of budget management.

 

Assuming above is the case with you following suggestion are made,

 

case - I . A

 

Overall budget - 220 $ under control, then spread the total values exactly to fiscal years.e.g - 100 + 120 or 110 + 110 or 90 + 130 combinations whatever way your client want to distribute annually.

Settings in budget profile - Avail. control set to ANNUAL and tolerance limit - 100%

 

case - I . B

 

Overall budget - 220 $ under control, no check on annual budget distribution.

Settings in budget profile - Avail. control set to OVERALL and tolerance limit - 100%

 

case - II

 

Tolerance limit - 110% , Avail. Control set to - ANNUAL

 

It means every year annual budget allow booking up to 110% but has nothing to do with overall budget limitation. Means, Conceptually you are allowing the budget to exceed every year then there is no point to have check on overall ( total of all years) at same time in this case. ( if I am not wrong , this is your current case)

 

To have more stricter control over budgets you may use 'release' indicator in combination with overall or annual.

 

Please leave feedback.


Re: How to get change /display mode of Purchase Requisition

0
0

Did you try FM MEREQ_GET_FACTORY, then methods IF_PURCHASE_REQ_FACTORY~LOOKUP_HEADER and IF_PURCHASE_REQUISITION~GET_TRANSACTION_STATE ?

 

Regards,

Raymond

Re: Issue with Pop-up and Dialog boxes in UI5

0
0

Hi Jamie,

Thank you for your reply.

My design of the screen is as below.

 

I have a  home view, which acts as a container for 9 different views. I have created collapsible panels to contain each view inside the home view.

 

HomeView.xml:

-----------------------------------------------------------------------------------------

<core:View xmlns:core="sap.ui.core" xmlns:mvc="sap.ui.core.mvc" xmlns="sap.m"

  controllerName="hro.ess.view.EssHome" xmlns:html="http://www.w3.org/1999/xhtml">

 

  <Panel id="pnlPendingReqst" expanded="{device>/isNoPhone}" headerText="{i18n>pendingRequests}" expand="onExpandPendingRequests">

 

       <mvc:XMLView id="viewPendingRequests" viewName="hro.ess.view.PendingRequests" />

             <headerToolbar>

       <Toolbar>

       <ToolbarSpacer />

       <Button icon="sap-icon://sys-help-2" press="onHelpPress" />  

       </Toolbar>  

       </headerToolbar>

   

  </Panel>

 

  <Text text="{i18n>myActions}" class="sapMH3FontSize" />

 

 

  <Panel id="pnlLOA"  expanded="{device>/isNoPhone}" headerText="{i18n>LOARequest}" expand="onExpandPanel">

 

       <mvc:XMLView id="viewLOA" viewName="hro.ess.view.LOARequest" />

       <headerToolbar>

       <Toolbar>

       <ToolbarSpacer />

       <Button icon="sap-icon://sys-help-2" press="onHelpPress" />  

       </Toolbar>  

       </headerToolbar>

  </Panel>

.

.

.

.

.

</core:View>

 

-----------------------------------------------------------------------------------------

 

Each of the embedded view has a set of fragments, which I insert and remove based on user's interaction.

 

One of the these views looks like below.

 

-----------------------------------------------------------------------------------------

<mvc:View

  height="100%"

  controllerName="hro.ess.view.LOARequest"

  xmlns:l="sap.ui.layout"

  xmlns:f="sap.ui.layout.form"

  xmlns:mvc="sap.ui.core.mvc"

  xmlns="sap.m">

 

 

 

 

  <Panel id="idFormContainer">

  <content>

 

  </content>

 

  </Panel>

 

 

</mvc:View>

-----------------------------------------------------------------------------------------

 

Inside the form Container, I insert a fragment which has few editable components, on INIT of the controller.

 

-----------------------------------------------------------------------------------------

<core:FragmentDefinition

  xmlns="sap.m"

  xmlns:l="sap.ui.layout"

  xmlns:f="sap.ui.layout.form"

  xmlns:core="sap.ui.core"

  xmlns:html="http://www.w3.org/1999/xhtml">

 

 

  <l:Grid

    defaultSpan="L12 M12 S12">

    <l:content>

 

 

 

    <l:Grid

     defaultSpan="L12 M12 S12"

     width="auto">

     <l:content>

          

      <f:SimpleForm id="LOAForm"

  maxContainerCols="1" editable="true" layout="ResponsiveGridLayout"

  labelSpanL="4" labelSpanM="4" emptySpanL="4" emptySpanM="4"

  columnsL="1" columnsM="1" class="editableForm">

  <f:content>

 

 

  <Label text="{i18n>status}" />

  <Input value="{personalData>/MyStatusDesc}" editable="false" />

  <Label text="{i18n>reason}" required="true" />

  <Select id="dd_reason" autoAdjustWidth="true" change="onChangeReason"  selectedKey="{mockData>/ActionReason}"

 

 

  items="{

                                        path: 'actionReason>/'

                                      }" >

  <core:Item key="{actionReason>Reason}"

  text="{actionReason>ReasonText}" />

 

  </Select>

<Label text="{i18n>EffectDate}" required="true" />

  <DatePicker id="idstartdate" displayFormat="long" valueFormat="yyyyMMdd"

  dateValue="{mockData>/EffectiveDate}" />

  <Label text="{i18n>returnDate}" required="true">

  </Label>

  <DatePicker id="idreturndate" displayFormat="long" valueFormat="yyyyMMdd"

  dateValue="{mockData>/DateTask}" >

 

 

  </DatePicker>

 

 

  </f:content>

  </f:SimpleForm>

 

 

      </l:content>

    </l:Grid>

 

<VBox>

 

 

<Button text = "{i18n>submit}" id="idBtnSubmit" icon="sap-icon://accept" press="onSubmit" visible="true"/>
<Button text = "{i18n>cancel}" id="idBtnCancel" icon="sap-icon://sys-minus"  press="onCancel" visible="true"/>

 

 

</VBox>

 

    </l:content>

 

  </l:Grid>

 

 

</core:FragmentDefinition>

-----------------------------------------------------------------------------------------

 

On click of these buttons, I show a pop-up on the screen for confirmation.

 

-----------------------------------------------------------------------------------------

sap.ca.ui.dialog.confirmation.open({

        question : "Delete the selected record?",

        title : "Delete",

        confirmButtonLabel : "Delete"

    }, function(oResult)

    {

    if(oResult.isConfirmed)

    {

    t.deleteEditEmc1Confirm();

    }

    }

 

    );

-----------------------------------------------------------------------------------------

 

While showing these pop-ups, the screen travels all the way to the top and sometimes, the pop-up is clipped and not shown properly.

 

Also, the pop-up's display depends upon the location of the button which triggers the pop-up.

In the below screenshot, the "Submit" button triggers the pop-up on the screen.

The button is currently in the middle of the screen and hence pushes the pop-up even further up.

 

If the submit button was, say at the bottom of the screen, the pop-up comes at-least in the middle of the screen.

 

 

popup2.png

Re: No test methods found on ABAP Unit Runner

0
0

Hi,

 

For risk level and duration, it's depreciated to use the pseudocomments.

From the SAP Help:

  • A risk level must be defined for SAP test classes.

  • The additions RISK LEVEL and DURATION replace the pseudo comments for test classes. Existing pseudo comments are not ignored, but should no longer be used.

 

Rgds,

Jeroen

Re: DS error with HANA SP09

0
0

HANA 1.0 SP9 Revision 92 is not compatible with DS 4.2 SP1. It is supposed to be with DS 4.2 SP4 though (SAP Note 1600140).

Contact SAP support.

 

Use Input keys must be set to yes when your target table has no primary key defined but needs to be updated in the data flow.

Re: SBO mobile apps SSL certificate for multiple IP


Re: Activate revenue on cost center - Deactivate Msg KI166

0
0

Any ideas about this issue ?

Re: Allow cost elements posting only to Internal Orders

0
0

Hi,

 

If field status, for whatever reason, is not a good solution in your case, you should write a validation, as already suggested. Either in FI (OB28) or in CO (OKC7) - it does not matter. As pre-requisites you would check if cost element (account) is in the relevant group, and in 'check' section you would verify that I/O is not initial, while cost centre - is.

 

Regards,


Eli

Re: Read receipts in Receiver mail

0
0

Hi Shabarish,

have you solved this issue.

I need to do something similar.

Thanks in advance.

stefano manetti.

Re: Sales order(VA01) discount value not calculated

0
0

Dear Kumar,

 

 

Thanks for your help the problem was resolved

 

Regards,

Sukdev.

Re: Line Item is not showing at the time of Delivery (vl01n)

0
0

Dear JM,

 

Partial delivery indicator in customer master per line item is on allowed and max limit is 9. But delivery have made more than 11 for line item 540.

 

Kindly Help me to resolve this,

 

Adnan

Regards,

Re: Substitution rule for payment method

0
0

Hiii Mukthar,

 

i completely agree on u.. but what if new vendor is created. then everytime we need to include the same in set structure... so can there be any way where system directly fetches payment method from master data??

Re: Mat. Avail Date changes every day

0
0

Friends,

To test the scenario. I took an Order with qty 100. But confirmed qty in Schedule line was 0 because there was no stock. I created stock and executed V_V2. But even after running V_V2, the confirmed qty @ sched line was zero. What I'm missing?

Thank you.


Re: REST Service call in Studio

0
0

Hi Mithun,

 

Unfortunately, POST doesnt help me. I had tried that too.

Re: Delete assignment of HU from outbound delivery ?

0
0

Hi,

I have the same problem. All I have found at this moment is this note:

581282 - Packing of deliveries via BAPI or function module

 

And it says:

You want to generate or change handling units for a delivery. You have planned to use the BAPIs for business object "Handling unit" for this purpose. (For example BAPI_HU_CREATE, BAPI_HU_DELETE, BAPI_HU_PACK, BAPI_HU_REPACK, BAPI_HU_UNPACK). Since these modules do not make updates on delivery, these cannot be used for packing in the delivery.

In the same way it is not possible to pack deliveries with function modules of function group V51E (HU_CREATE_ITEM, HU_CREATE_ONE_HU, HU_DELETE_HU, HU_REPACK, HU_UNPACK).

If possible, the packing of the delivery should occur via IDOC DELVRY03 (WHSCON). If this also is not possible, function module WS_DELIVERY_UPDATE can be used. Please note, however, that this function module is not released for customers. That is, it is subjected to changes via SAP. In case of changes it is possible that your program which uses this function module, does not run anymore after importing of a Support Package and that is is necessary to change your program.

More options are currently not available.


Did you solve your problem?

Re: Comma & Dot separator for Quantity field

Re: Transition from Standard costs to actual cost at the period end

0
0

Hi,

 

Thank you again for your reactivity, i think that is how we are going to handle the project.

 

Best of luck to you too.

 

Elmahdi.

Re: 500 connection timed out

0
0

Dear Yogesh,

 

Resetting the parameter

 

icm/server_port_0 = PROT=HTTP,PORT=1080,TIMEOUT=30,PROCTIMEOUT=600

 

 

Regards,

Himanshu

Viewing all 8902 articles
Browse latest View live




Latest Images