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

Re: how to delete the selected record from table control when delete button clicked?

$
0
0

HI Thales Schmidt ,

 

you gave me the best examples to refer, thank you so much , if possible please guide to go through some other programs which is available with several functionalists.


Default script

$
0
0

Hello,

 

We are using BPC NW 10.0 SP4 801.

 

We have a requirement in which user want to use below script in default.lgf. They don’t want to run this script using data manager package.

 

*XDIM_MEMBERSET INTERCO = <ALL>

*XDIM_MEMBERSET AUDITTRAIL = <ALL>

*XDIM_MEMBERSET COMPANY = <ALL>

//*XDIM_MEMBERSET CATEGORY = <ALL>

*XDIM_MEMBERSET CATEGORY = ACTUAL

*XDIM_MEMBERSET COSTCENTER = C9999

*XDIM_MEMBERSET ACCOUNT = NETINC

*XDIM_MEMBERSET TIME = %TIME_SET%

*WHEN ACCOUNT

*IS NETINC

*WHEN TIME.PERIOD

*IS <> APR

*REC(EXPRESSION = %VALUE%+([ACCOUNT].[NETINC],[TIME].[TMVL(-1,%TIME_SET%)]),ACCOUNT = "NETINC")

*ENDWHEN

*ENDWHEN

 

Can you please help me that how can we use this in default, here %TIME_SET% is creating issue if I use this in default.lgf.

 

Best Regrads,

Deepak

Re: Issue in transformation

$
0
0

Hi Phani,

 

Thanks for the prompt reply.

 

I have only 1 request in PSA. The transformation is between DSO to DSO and requirement is as follows:

 

I want to have the data from 2015 fiscal year afterwards. And if any employee is active and missing the fiscal year data then my code will copy the data from (missing fiscal year -1 year) data. For Ex.

 

Untitled5.jpg

The error screen shot is as follows:

 

Untitled6.jpg

Re: How to change the message error into warning .

$
0
0

As I stated, you can't change the message as warning.

You need to evaluate the shipping instruction. Just go to item level in MIGO tab 'Purchase Order Data', then click on the evaluate and select entered compliance.

Then post your entry.

Re: What is the difference between crm_bol_core->Reset() and if_bol_transaction_context->Revert()

$
0
0

Hi Pramod,

 

Can I know what is related to?

I mean if you can explain it would be very helpful.

 

Thanks,

Swapnil

Re: Impact of changing company code in site master

$
0
0

Hello Deyi,

 

I'm currently investigating changing CC for open stores.

 

Regarding you point 2. Is it strictly necessary to do that point?

 

I did a test in a copy of our prod system, and I did not take out the inventory before swithcing  CC. Then I did an POS Billling and all the articles movements was booked to the new CC and everything looks fine.

 

Of cource the new company needs to pay the old one for the stock, but I can find no techincal reason to do it. Have you found that?

 

BR

Ola

Re: data request error in info package under shedule tab

$
0
0

hi,

   in r/3 side RSA3 tcode working fine for 2lis_11_vahdr.but bw side i faced transfer structuer error.i used all the programs and fm for activation process.

but same problem occured.

 

Regards,

Thiru.

Re: UWL dynamic URL


Re: How to handle SAPUI5 Cache problem?

$
0
0

My web.xml is like that

 

web.xml

    <!-- ============================================================== -->

    <!-- UI5 resource servlet used to handle application resources      -->

    <!-- ============================================================== -->

    <servlet>

        <display-name>ResourceServlet</display-name>

        <servlet-name>ResourceServlet</servlet-name>

        <servlet-class>com.sap.ui5.resource.ResourceServlet</servlet-class>

    </servlet>

    <servlet-mapping>

        <servlet-name>ResourceServlet</servlet-name>

        <url-pattern>/resources/*</url-pattern>

    </servlet-mapping>

    <!-- BEGIN: test-resources -->

    <!-- test-resources mapping has to be switched off for productive use on a Java server! -->

    <servlet-mapping>

        <servlet-name>ResourceServlet</servlet-name>

        <url-pattern>/test-resources/*</url-pattern>

    </servlet-mapping>

    <!-- END: test-resources -->

    <!-- BEGIN: DEV MODE -->

    <!-- DEV MODE switched off by default and can be switched on during development -->

    <!-- but has to be switched off for productive use on a Java server! -->

    <context-param>

        <param-name>com.sap.ui5.resource.DEV_MODE</param-name>

        <param-value>false</param-value>

    </context-param>

    <!-- END: DEV MODE -->

   

    <context-param>

        <param-name>com.sap.ui5.resource.USE_CACHE</param-name>

        <param-value>false</param-value>

    </context-param>

   

    <context-param>

        <param-name>com.sap.ui5.resource.USE_SERVER_CACHE</param-name>

        <param-value>false</param-value>

    </context-param>   

<!-- ============================================================== -->

<!-- AppCacheBuster Filter                                          -->

<!-- ============================================================== -->

<filter>

     <display-name>AppCacheBusterFilter</display-name>

      <filter-name>AppCacheBusterFilter</filter-name>

      <filter-class>com.sap.ui5.resource.AppCacheBusterFilter</filter-class>

</filter>

<filter-mapping>

      <filter-name>AppCacheBusterFilter</filter-name>

      <url-pattern>/*</url-pattern>

</filter-mapping>

    <!-- ============================================================== -->

    <!-- Cache Control Filter to prevent caching of any resource        -->

    <!-- ============================================================== -->

    <filter>

        <display-name>CacheControlFilter</display-name>

        <filter-name>CacheControlFilter</filter-name>

        <filter-class>com.sap.ui5.resource.CacheControlFilter</filter-class>

    </filter>

    <filter-mapping>

        <filter-name>CacheControlFilter</filter-name>

        <url-pattern>*.html</url-pattern>

    </filter-mapping>

    <filter-mapping>

        <filter-name>CacheControlFilter</filter-name>

        <url-pattern>*.js</url-pattern>

    </filter-mapping>

    <filter-mapping>

        <filter-name>CacheControlFilter</filter-name>

        <url-pattern>*.xml</url-pattern>

    </filter-mapping>

    <filter-mapping>

        <filter-name>CacheControlFilter</filter-name>

        <url-pattern>*.json</url-pattern>

    </filter-mapping>

    <filter-mapping>

        <filter-name>CacheControlFilter</filter-name>

        <url-pattern>*.css</url-pattern>

    </filter-mapping>

    <!-- ============================================================== -->

    <!-- UI5 proxy servlet                                              -->

    <!-- ============================================================== -->

    <servlet>

        <servlet-name>SimpleProxyServlet</servlet-name>

        <servlet-class>com.sap.ui5.proxy.SimpleProxyServlet</servlet-class>

    </servlet>

    <servlet-mapping>

        <servlet-name>SimpleProxyServlet</servlet-name>

        <url-pattern>/proxy/*</url-pattern>

    </servlet-mapping>

    <!-- ============================================================== -->

    <!-- Welcome file list                                              -->

    <!-- ============================================================== -->

    <welcome-file-list>

        <welcome-file>index.html</welcome-file>

    </welcome-file-list>

</web-app>


Re: how to know from what program is execute POSTING_INTERFACE_DOCUMENT

Re: Default printing size

$
0
0

Hi Thirupathi,

 

I dont think this can be achieved within SAP.

 

You need to have a document converter software like XDC server conversion.

 

Check below

 

Google

 

Regards

Terence

Re: how to know from what program is execute POSTING_INTERFACE_DOCUMENT

$
0
0

Hello Maria,

 

You can write the code "BREAK user_name" wherein user_name is your sap login id - (sy-uname) in the beginning of the Z program and it will be triggered if and when the Z prog is called.

 

Please let me know if it works

 

Thanks

Re: Material Group Hierarchy Search Help

Re: Unauthorized access to content

$
0
0

Given the date it was published (June 2014), it seems that it was published and then later removed afterwards.  This can be for different reasons, including a violation of the rules of engagement.

I got a lot of errors when I use the "Fast SAPUI5 Develop tool"

$
0
0

hi experts,

   I got a lot of errors when I use the "Fast SAPUI5 Develop tool" Lucky Li

how could I solve this problem?

Chrome shortcutparameter:

C:\Users\Win7\AppData\Local\Google\Chrome\Application\chrome.exe --args --disable-web-security  --allow-file-access-from-files

 

thanks

regards.

20150411205027.jpg


Re: table name for characteristics values in equipment master

$
0
0

Hi Mohan,

 

 

CABN - Table for characteristics

 

AUSP - Characteristic values

 

KLAH - Class header data

 

KSML - Characteristics of class

 

 

Regards

Varun.M

Re: Tcode of vbak table entries

Re: GRC 10 SLG1 Firefighter Log shows synchronization job pulling data for old sessions

$
0
0

The Fireifghter log data for those old sessions is already captured and is recorded in grc box which can be seen through frefighter log reporting/transactional details option

Re: database level error reported by jdbc driver while executing statement:'exec spname' :statement did not return any result set\

$
0
0

Hi Peddaraju,

Please, close the thread according this How to close a discussion and why

 

If you can explain more detail the final issue, it could be helpful for further SCN members with a issue like yours.

 

Regards.

Re: Time displayed as NaN:NaN:NaN PM

$
0
0

Hi,

 

I try retrieve time from my OData service, but in results (displayed in UI5 application) I have NaN:NaN:NaN PM.

I know that this is due to the fact that I put "value" in line:

 

var date = new Date(value);
Viewing all 8746 articles
Browse latest View live




Latest Images