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

Re: DSO Change log after system refresh not working properly

$
0
0

OK, in BW 3.5, there will be an option to run init load between DSO to Cube. Did you try with this option?


Re: MSS Role

$
0
0

Hi,

 

Still the overlapping of Personnel Area values between the 2 roles is happening even though  We activated the following Switch in table T77S0 (we are not using custom object).

 

Table T77S0

AUTSW INCON  1

 

First Role Manager Self Service:-

 

For Authorization object P_ORGINCON we kept the following authorizations

 

Authorization level            *

Infotype                            *

Personnel Area               *

Employee Group              *

Employee Subgroup         *

Authorization Profile         *

Subtype                            *

Organizational Key             *

 

Similarly for authorization object P_ORGXX following were kept

 

   Authorization level                        E, M, R, W

   Infotype                                              *

   Payroll Administrator                         *

   Administrator for HR Master Data      *

   Administrator for Time Recordi         *

   Administrator Group                        *

   Subtype                                          *

 

For Second role   Maintain Master Role authorization object P_ORGIN has the following

 

Authorization level            *

Infotype                             *

Personnel Area               5000

Employee Group                 *

Employee Subgroup              *

Subtype                        *

Organizational Key         *

 

Please advise how to stop overlapping of Authorization object values between roles without using a custom object.

 

Regards,

reshmasingh

PORDCR1 Outbound Process code.

$
0
0

Hi,

 

 

In the process of Integration with SNC . we implemented ORDERS.ORDER05 to create Purchase order in SNC.  But this is not carrying the invoice fields eg:ERS indicator to PO in SNC. So we are not able to Post ERS invoice to SNC.

 

 

we are tyring to implement PORDCR1.PORDCR102, so that all the invoice fields are carried to PO in SNC. Since there is no outbound process code is defined in ECC, we are not able to trigger Outbound PORDCR1 message type.

 

Any help is appreciated on how to trigger PORDCR1 Idoc.

 

Also, will be glad to know, why PORDCR1 is designed diferently compare to regular Idoc process.

 

Thank you .

Re: Custom Field in G/L account

$
0
0

Hi Srinu,

Are you talking about adding field into BSEG table using transasction OXK3?

What I really don't understand is how to fill this new field during accounting.

Suppose that I'm creating a billing document that will create and accounting document: i need to fill my custom field in BSEG table with a custom field that I've inserted into VBRP table.

Do you how to link this two fields? Is there any user exit to use?

 

Kind Regards,

Giacomo

Re: Payroll Forms customization

$
0
0

Hi Guru's,

 

Kindly share your idea's, how to customize the wagetypes and the forms used for individual payroll results and totals of the payroll results.

 

Advise which forms are recommended smartforms or SAP Script forms.

 

Thanks in advance

 

Tanuja.

Re: Process and Forms Get Wrong Form in Stage Two

$
0
0

Yep. Sounds like your workflow bindings are wrong. Remember, after what you configure as the "start form scenario and form step", EVERYTHING else from that point is handled by workflow in determining routing (what form step/form and when).

Re: Enabling Adaptation for custom Embedded Component

$
0
0

Hi Vineet,

 

As far as I know, the Add option is not available for partner created extensibility anchor. May be in future it will be supported.

 

But still you can confirm this by raising an How-To incident in the system

 

Best regards,

Hari

Re: HCM Processes and Forms - Document being overwritten (ContRep: asr_db_01)

$
0
0

Are you using DPF? Looks like an issue with a content server....document being written to it...due to DPF configuration.


Re: Automação CT-e

$
0
0

Oi Luciana

 

as BadIs são:

 

BAdI: Step Implementation before/after DACTE - chamada através do processo CTEFLEX.

BAdI: Determine Business Process for CT-e - usada para determinação do processo. Você vai usá-la por exemplo se quiser implementar a automação para uma filial e/ou transportador (parceiro) específico.

 

* se a sua dúvida já foi respondida não esqueça de fechar a thread.

 

Abraço

Eduardo Chagas

Re: Code and code groups mandatory in Notification

$
0
0

Hi Thirupathi,

Same requirement has been addressed here in this document.

 

http://scn.sap.com/docs/DOC-43172

 

Mandatory field settings through configurations (SPRO) are not effective as explained in this document.

Read this carefully and implement.

it is easy.

 

Jogeswara Rao K

Rename ESS development component

$
0
0

Hi, we are in the process of customizing the ESS Leave Request component.  We want to rename the component so instead of sap.com/ess~lea the name of the component is mycompany.com/ess~lea. 

 

I am able to make all changes, compile, build and deploy the renamed component.  The sap.com/ess~lea has also been undeployed in SDM.   However, when I try to bring up the app using mycompany.com/ess~lea I get this error

 

com.sap.tc.webdynpro.services.exceptions.WDRuntimeException: Failed to create deployable object 'sap.com/ess~lea' since it is not a Web Dynpro object.

 

Why is it trying to call the sap.com/ess~lea version?  Is there some configuration setting that I missed?  Is renaming the component even possible?

Re: How to fix this code. Prompt Variables in a *FOR/*NEXT Structure

$
0
0

Hi Adrian,

 

LOOKUP is used to access records outside the current model. So, if your script is running in the same model u do not need to use LOOKUP.

 

On the second issue on this block of code

//-----------------------------------------------------------------------------------

//2014 (BASE)

//-----------------------------------------------------------------------------------

*XDIM_MEMBERSET TIME = %TIME0%

*WHEN hr_account

*IS %s_cuentas%

*FOR %F_TIM% = %TIME1%    ========> Problems here, the script logic don't validate this

//************************ ENERO

*WHEN TIME.MONTHNUM

*IS 1

*REC(FACTOR = LOOKUP(%F_TIM%_TIM), TIME = %F_TIM%.UNITS, HR_ACCOUNT = ESCSAL )

*REC(FACTOR = LOOKUP(%F_TIM%_TIM), TIME = %F_TIM%.01, HR_ACCOUNT = ESCSAL )

*ENDWHEN

 

 

 

I do not see any *NEXT, that might be an issue.

 

The other thing I observed that you have already scoped time in

*XDIM_MEMBERSET TIME = %TIME0%

 

Than why are u using

*FOR %F_TIM% = %TIME1%

 

The above also may be an issue.

 

Hope this helps.

 

Regards,

Kalyan.

Re: HANA UI Integration Services - Empty Widget List

Re: Calculated value different for AccType

$
0
0

Hi Sam

 

I think you can just run a script logic/BADI/account-transformation-rule after loading data from BI to reverse sign of all accounts..

 

example(script logic):

 

*WHEN CATEGORY

*IS ACTUAL

*REC(EXPRESSION=%VALUE%*-1)

*ENDWHEN

 

JAck

Re: BPC10 NW Custom MDX Functions

$
0
0

Hi Mark

 

I never saw such functions in BPC NW 7.5 but if you let us know the requirement then we can help.

 

JAck


Re: After range in EVDRE??

$
0
0

Hi Kalyan,

 

I did after range after column expansion.

 

in first after range column expansion, i want to calculate sum of targets and achievements and  in second after range column expansion, i want to calculate difference between targets and achievements.

 

Thanks and Regards,

Naidu

Re: After range in EVDRE??

$
0
0

Hi Nilanjan,

 

I have an expansion along with columns.

in first column of after range i want to calculate sum of targets and achievements. i did this by using evsum.

in second column of after range i want to calculate difference between targets and achievements.for doing this i applied excel logic. but i got error  i.e #REF! in all cells of after range.

 

 

Thanks and Regards,

Naidu

Re: After range in EVDRE??

$
0
0

Hi Jörg,

 

Thanks for reply.

 

I did as per your instructions.

 

i wrote the excel formula in cell J20 = sheet2!G20-sheet2!H20 and then expanded the sheet. i got error =Sheet2!#REF!-Sheet2!#REF!  in expand range.

 

 

Thanks and Regards,

Naidu

Re: Enhancement for 0BPARTER_ATTR not works, has some configuration to this datasource ?

$
0
0

Hi Vaz,

 

Code need to be maintain  in EXIT_SAPLRSAP_002, INCLUDE ZXRSAU02.

 

When you execute info pack at bw side, job will trigger and get into the exit function as per the type data source.

 

INCLUDE ZXRSAU01 is related transactional data sources.your data source 0BPARTNER_ATTR, master data attributes. so you need to put your code in ZXRSAU02 only.

 

Thanks

Re: Date field export to .CSV format

$
0
0

This is a problem with Excel.  Because Excel expects MDY order on dates, the values that format as dates are the ones where the Day of the month is between 1 and 12, which is a valid month in MDY format.

 

-Dell

Viewing all 8798 articles
Browse latest View live




Latest Images