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

Re: Record Missing in 0FIGL_C14/O14/0FI_GL_14

$
0
0

Hi Harshil,

 

You can use this ABAP Code Directly to Change ROOSFIELD table.

 

*&---------------------------------------------------------------------*
*& Report  ZROOSFIELD_CHANGE
*&
*&---------------------------------------------------------------------*
*&
*&
*&---------------------------------------------------------------------*

report zroosfield_change.

data:l_msg    type string value 'Are you sure you want to change Roosfield Table',
      l_answer type c.

selection-screen begin of block b1 with frame title text-001.

parameters: poltpsou type roosfield-oltpsource obligatory,
             pfield   type roosfield-field      obligatory,
             pselect  type roosfield-selection  default 'X'.

selection-screen end of block b1.

concatenate l_msg 'for Datasource:' poltpsou ',Field:' pfield 'and Value:' pselect into l_msg separated by space.

call function 'POPUP_TO_CONFIRM'
   exporting
*   TITLEBAR      = ' '
*   DIAGNOSE_OBJECT             = ' '
     text_question = l_msg
*   TEXT_BUTTON_1 = 'Ja'(001)
*   ICON_BUTTON_1 = ' '
*   TEXT_BUTTON_2 = 'Nein'(002)
*   ICON_BUTTON_2 = ' '
*   DEFAULT_BUTTON              = '1'
*   DISPLAY_CANCEL_BUTTON       = 'X'
*   USERDEFINED_F1_HELP         = ' '
*   START_COLUMN  = 25
*   START_ROW     = 6
*   POPUP_TYPE    =
*   IV_QUICKINFO_BUTTON_1       = ' '
*   IV_QUICKINFO_BUTTON_2       = ' '
   importing
     answer        = l_answer
* TABLES
*   PARAMETER     =
* EXCEPTIONS
*   TEXT_NOT_FOUND              = 1
*   OTHERS        = 2
   .
if l_answer = '1'.

   update roosfield set selection = pselect where     oltpsource = poltpsou"'0FI_GL_14'
                                            and       objvers    = 'A'
                                            and       field      = pfield."'HKONT'.
   if sy-subrc = 0.
     message 'Changes done Successfully' type 'S'.
   endif.

elseif l_answer = '2'.

   message 'No changes made' type 'S' display like 'E'.

elseif l_answer = 'A'.

   message 'No changes made' type 'S' display like 'E'.

endif.


Or if you have authorizationyou can change it using se16n

1. go to se16n write table name

2. enter /h in transaction command field

3. press f8

4.  change values of following fields in run time

gd-edit       = 'X'

gd-sapedit = 'X'

5.table will display in edit mode now you can change it and save.

 

Regards,

Mayur somaiya


Re: field in UI works incorrect

$
0
0

Hi Ayrat

 

If you F2 on the view for the various users.

 

Are the components in use all the same?

 

Regards

 

Arden

Re: Add Bidder's currecny automatically when we add new bidder to RFx

$
0
0

Hi,

 

Dear I need also same requriement , could u please explaine me in details how u achieved .

 

Thanks for your support

Re: Z table not showing in LOAD Request

$
0
0

Hi Sumeet,

Based on your SLT version, please apply the correction notes for SLT sytem.

Maybe that will also help!

 

Regards,

Saritha K

Re: Issue in agent determination using AC-Rule

$
0
0

Hi Vadamalai,

It looks correct to me as well.

 

1.Please go to SWI1 and check Workflow log to see which agents were selected. You can also do that directly from Workflow Builder (if you run test).

If you have just one agent in there as an agent for a step, then you are picking just one from the rule resolution. Based on last screen-dump that shouldn't be the case.

 

Check standard WF WS45301461.

 

3.Just in case - check your workflow container element (if you are using one), it should be a table of SWHACTOR (Rule resolution result). And both - otype and objid should have value. The binding between rule resolution and your task should be automatic anyway- you don't need to use container element.

 

Cheers,

 

Pavel

Re: How to "SWITCH ON" in structure.

Re: Fields in Fixed Asset master for existing, in use assets

$
0
0

Hi Chintan,

 

I understand multiple questions not allowed in single thread. But in this case, my question is related to 4 or 5 fields of Asset Master, which are inter-connected.

 

I need a little more detailed help, Chintan.

 

Can you tell me more about the 2nd approach? If I do not capture the asset capitalization from the past, then how do I change the Asset Status from New to Active? I guess I will have to enter the Capitalization document. But then how will the asset clearing account get knocked off?

 

Then how should I enter APC? The field is disabled. Only Historical APC field is enabled, but you are saying that this field is not needed.

 

Again I repeat I want to know the steps without using DTW or Import option.

 

Thanks.

Re: Payroll Issue

$
0
0

Go through log thoroughly you will get an idea Since as far i know system works fine until and unless we have not done implemented and manipulated the standard values i.e custom PCR etc.

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

Regards

Venkatesh


Re: Active version of workflow is not picked in target system

$
0
0

Hi Vijay,

 

You were right. There were some errors related to container elements in test system which i corrected in development system and transported. It then picked the active version automatically.

 

Regards,

Deepak.

Re: Inactive objects are still exists SE80

$
0
0

Dear

we need to fulfill pre requisite for EA-HR_MSS 1.0 we are facing problem in updating spam level bcaz of inactive objects are exists in the system

 

we have request in quality which is not released created in quality only so some objects are in lock state we if we released the request what will the impact shall we do that  our landscape is dev qua prd ....

 

Give me some suggestion how to release that request

 

Regards

Re: Css Theming with color picker

$
0
0

Hi ,
Sorry for the delayed  response ...
I have also used almost  the same controls. . . but not sure why it is behaving like that  . think will have to explore/debug a bit deeper ....

Re: Function code * HIS REZZ/S 14 does not exist

$
0
0

HI

 

Any help ?

 

This error not coming in "D" environment but persistent in "Q", not sure what was missing from config etc.

 

Thanks

Re: Multiple mails throws in modeled Dead Line

$
0
0

I think you are getting confused with the use of "Multi Line " element in workflows. We use them for parallel processing . it makes sense to "Multi Line " element when the email text for each agent is different. If the email text is same then just create  a background step with method that take the list of agents as inputs and sends the email to all of then in one go.

 

Fill the RECEIVERS with all 3 agents.

 

 

Regards

Sandy

Re: Subcontracting Challan status not updating for a particular Excise Group

Re: Creatins a table with dynamic number of columns.

$
0
0

Hey

 

Thanks for your input. This is of great help but still I want to know if we can have some column fixed in our sap.m.table.

 

Regards,

Dhiraj More


Re: Adding parameter to standard report

$
0
0

Hi,

 

This technic is not for Mass change in Background .

 

Regards.

Re: As to Partner Determination on Web UI

$
0
0

Thanks Andie

 

So you'll need to explain the conditions you need for there population

 

Regards

 

Arden

Re: Repeating DIVs

$
0
0

For detail page try

 

return new sap.ui.layout.VerticalLayout("Layout1", {

  content:[

  sap.ui.view({ id:"Table1", viewName:"nalog-ui5.Table1",type:sap.ui.core.mvc.ViewType.XML}), // link to table1 view 

        sap.ui.view({ id:"Table2", viewName:"nalog-ui5.Table2",type:sap.ui.core.mvc.ViewType.XML})]  // link to table2 view 

  ]});

 

sap.m.Page needs to be embeded into NavContainer (sap.m.App or sap.m.SplitApp) that's probably why tables are not visible

 

 

to pass values between view you should use eventing

sap.ui.getCore().getEventBus().subscribe()

sap.ui.getCore().getEventBus().publish

Re: Problem with SAVE_TEXT

Re: Remediation View shows Blank screen in GRC 10.1 SP08

$
0
0

HI Uday

Do you have any more good suggestions, because after this I still have a grey screen.

BR

Karl

Viewing all 8798 articles
Browse latest View live




Latest Images