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

Re: Auto De consolidation in EWM

$
0
0

Hi Srikanth

 

you can do via POSC but not via Decon.

As for decon system should follow below rule.

 

 

But in your case you have single mat and no diff decon group. So you need to do this via repacking.

and automate packing.

 

No in ur case you can do inbound packing as well.

Means when you receive IBD in EWM. Run pack program via pack spec and do repacking from 1hu to multiple.This will fix ur issue.

 

 

Regards

Suraj


Re: Running 64-bit PB12.6 application

$
0
0

I don't know what steps you're taking to try to set up the smart client.  That's also a rather different topic than the original one here.  I suggest you start a new thread and explain how you're trying to define the smart client as part of that new thread.

Re: Scheduled recurring reports not running

$
0
0

Were you able to find a solution to this issue? I am having an identical issue. The only error I can find in the logs is:

 

assert failure: (.\src\rptparameters.cpp:1800). (false : procReport.dll: CReportDllParameters::InitObjectFromBag(): could not extract SI_LOGON_MODE from SI_LOGON property bag).

 

Google search yields no results.

Re: Using ODATA Service for insert operation with SP

$
0
0

Dear Ben,

 

please be aware that you have to create your tables and procedures in the NEO_... schma. Then you have to execute a special procedure on the HCP schema:

 

call "HCP"."HCP_GRANT_ROLE_TO_USER"('usertrial.xsdemo.hello::model_access','USER');

 

this is a my sample hdbrole file:

 

role usertrial.xsdemo.hello::model_access {

    application privilege: usertrial.xsdemo.hello::Basic;

    catalog schema "NEO_XXX": SELECT, INSERT;

    sql object usertrial.xsdemo.hello.data::mytab: SELECT,INSERT;

    sql object usertrial.xsdemo.hello.procedures::insertMeasurement: EXECUTE;

}


Best regards

Gregor

No valuation area is assigned to plant XXXX

$
0
0

Dear all

        can any one can help me with this error and i had linked the plant with the valuation area and the division and business area and this  error appear when i create equipment and maintenance plant. so any ideas

 

No valuation area is assigned to plant 1000

Message no. IS506

Diagnosis

No valuation area that is assigned to the specified plant could be found.

System Response

Processing will not be continued.

Procedure

Make sure that the plant was specified correctly. If it was, the missing data must be maintained in Customizing.

 

 

Thanks

Re: Email notifications in IS

$
0
0

Hi Don,

 

Thanks for the reply.  I found that video and spent too much time configuring and testing the EIM AJS.  According to other doco I also had to set up the Destination on the BO AJS Server too on all servers in the cluster.  Luckily we did not need a valid email address in the from field.

 

So it is working in the development environment now (sort of).  Emails reminders and past due are being sent on a term/rule due date basis.  However, emails are not being sent on term/ rule submission as per the doco (support item raised).

Thanks for the tip on the groups.  I have only tested on Enterprise users to date.

 

regards

Adrian

Re: When running from DMP can't read parameters from Badi

$
0
0

Alright guys

Happy Monday! (at least in this part of the world)

 

I understand what you mean with double checking the value of query.

To be honest, I was taught to check it like this from a KT material I was handed and as I mentioned before I'm still learning BPC as I'm new to BI/BW world.

Thanks for sharing your knowledge, I will not check its value from now on if it's a waste of time

 

Today the consultant showed me how she copied the script. She copied from the comment block from my code to Excel, from there she edit it and then copy it to the logic script file. That's how we've got the extra random spaces in it! although you don't get to see them in the script.

 

Lesson learnt: don't copy and paste it, write it yourself in the logic script file.

 

Thanks a lot for your recommendations/suggestions Andy and Bilen!

Cheers!

Re: how to upload two sheets data into internal table

$
0
0

Hi,

 

BAPI_ACC_DOCUMENT_POST should be able to handle those fields.

What exactly is the problem? The GL documents are being created but those fields are empty?

 

cheers

Paul


XSLT XML to ABAP with list

$
0
0

hi experts

I am in a rut trying to transform XML to ABAP internal tables and everything is working well except this piece.  I am looking for assistance as everything I am trying is not working.

 

Here the is XML returned.  Again, I am fine with everything but in the <sources> element.  I have added the things I have tried at the bottom of this thread.  I really appreciate any help on this.

 

Thanks,

Chris

 

 

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>

<company>

    <companyId>

        111

    </companyId>

    <websites>

        <website>http://www.test.com</website>

    </websites>

    <sources>

        <source>netprospex</source>

        <source>jigsaw</source>

        <source>cortera</source>

        <source>insidetest</source>

        <source>userAddedData</source>

        <source>capitaliq</source>

        <source>crowdflower</source>

    </sources>

    <city>test</city>

    <companyStatus>Operating</companyStatus>

    <companyType>Private</companyType>

    <country>United States</country>

    <employees>3000</employees>

    <fax>111-111-1111</fax>

    <financialYearEnd>0</financialYearEnd>

    <industry>Computer Software</industry>

    <naics>000000</naics>

    <naicsDescription>test</naicsDescription>

    <name>test</name>

    <phone>+1 111 111 1111</phone>

    <revenue>0</revenue>

    <sic>0000</sic>

    <sicDescription>Services-Prepackaged Software</sicDescription>

    <state>NA</state>

    <street>test</street>

    <subIndustry>test</subIndustry>

    <subsidiary>false</subsidiary>

    <zip>00000</zip>

</company>

 

My XSLT is again working fine but the <sources> list items are not filling properly.  They way it is now, I get the first item 7 times in the nested internal table.

<xsl:template match="/">
     <ZRESULTS>
       <COMPANYDETAILS>
         <xsl:for-each select="company">
           <ZICOMPANY_DETAILS>
             <COMPANY_ID>
               <xsl:value-of select="companyId"/>
             </COMPANY_ID>
             <NAME>
               <xsl:value-of select="name"/>
             </NAME>
             <COMPANY_TYPE>
               <xsl:value-of select="companyType"/>
             </COMPANY_TYPE>
             <COMPANY_STATUS>
               <xsl:value-of select="companyStatus"/>
             </COMPANY_STATUS>
             <INDUSTRY>
               <xsl:value-of select="industry"/>
             </INDUSTRY>
             <SUB_INDUSTRY>
               <xsl:value-of select="subIndustry"/>
             </SUB_INDUSTRY>
             <STREET>
               <xsl:value-of select="street"/>
             </STREET>
             <CITY>
               <xsl:value-of select="city"/>
             </CITY>
             <STATE>
               <xsl:value-of select="state"/>
             </STATE>
             <ZIP>
               <xsl:value-of select="zip"/>
             </ZIP>
             <COUNTRY>
               <xsl:value-of select="country"/>
             </COUNTRY>
             <PHONE>
               <xsl:value-of select="phone"/>
             </PHONE>
             <FAX>
               <xsl:value-of select="fax"/>
             </FAX>
             <REVENUE>
               <xsl:value-of select="revenue"/>
             </REVENUE>
             <EMPLOYEES>
               <xsl:value-of select="employees"/>
             </EMPLOYEES>
             <SUBSIDIARY>
               <xsl:value-of select="subsidiary"/>
             </SUBSIDIARY>
             <SIC>
               <xsl:value-of select="sic"/>
             </SIC>
             <SIC_DESCRIPTION>
               <xsl:value-of select="sicDescription"/>
             </SIC_DESCRIPTION>
             <NAICS>
               <xsl:value-of select="naics"/>
             </NAICS>
             <NAICS_DESCRIPTION>
               <xsl:value-of select="naicsDescription"/>
             </NAICS_DESCRIPTION>
             <FINANCIAL_YEAR_END>
               <xsl:value-of select="financialYearEnd"/>
             </FINANCIAL_YEAR_END>
             <EQUIFAX_ID>
               <xsl:value-of select="equifaxId"/>
             </EQUIFAX_ID>
             <FORTUNE_RANKING>
               <xsl:value-of select="fortuneRanking"/>
             </FORTUNE_RANKING>
             <COMPANY_DESCRIPTION>
               <xsl:value-of select="description"/>
             </COMPANY_DESCRIPTION>

             <SOURCESLIST>
               <xsl:for-each select="company/sources/source">
                 <ZSOURCES>
                   <SOURCE>
                     <xsl:value-of select="source"/>
                   </SOURCE>
                 </ZSOURCES>
               </xsl:for-each>
             </SOURCESLIST>

             <TICKERS>
               <xsl:for-each select="//company/tickers">
                 <ZTICKER>
                   <EXCHANGE_SYMBOL>
                     <xsl:value-of select="exchange"/>
                   </EXCHANGE_SYMBOL>
                   <TICKER_NAME>
                     <xsl:value-of select="tickerName"/>
                   </TICKER_NAME>
                 </ZTICKER>
               </xsl:for-each>
             </TICKERS>

           </ZCOMPANY_DETAILS>
         </xsl:for-each>
       </COMPANYDETAILS>
     </ZRESULTS>
   </xsl:template>

</xsl:transform>


when I went to XSLT Tryit Editor v1.0&lt;/title&gt;&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;/tryit.css&… and tried it there, it didnt work as well.  I tried making  <xsl:for-each select="company/sources/source"<xsl:for-each select="company/sources"> and all I get is the first item in the list. 

Re: XSLT XML to ABAP with list

$
0
0

All,I figured it out.

 

This is how the sources piece needs to look in order to work.

<SOURCESLIST>
               <xsl:for-each select="sources/source">
                 <ZSOURCES>
                   <SOURCE>
                     <xsl:value-of select="."/>
                   </SOURCE>
                 </ZSOURCES>
               </xsl:for-each>
             </SOURCESLIST>


Pretty simple once I figured it out but dont we all say that.

Re: Replicate BP from ERP to CRM is not possible

$
0
0

Can you check whether whether the BADI CRM_DATAEXCHG_BADI in CRM is implemenetd for the method CRM_BDOC_SEND

How to promote Dashboard Flash object

$
0
0

How to promote dashboard which export as Flash? Do I need to export again after change the url in data manager?

Re: Deadlock, waiting for a 'next key'

$
0
0

Hi William-Paul,

 

Are there applications develped using ESQL-C?
If so, please check its precompiler(cpre or cpre64) option whether "-r" option specified or not.
If you didn't specify it, it will run as isolation 3.
ESQL is setting isolation level 3 as default.
You can set it from ocs.cfg at $SYBASE/OCS-15_0/config too.

 

Also you can check isolation level of a specific spid like below.

 

select @@isolation

go

 

OR

 

select pssinfo(<spid>, 'isolation_level')
go

 

Thanks,
jseo

Re: Need Query for Which item not using the Financial year

$
0
0

Hi,

 

Try:

 

SELECT T0.[ItemCode], T0.[ItemName], T0.[OnHand] FROM OITM T0  left JOIN INV1 T1 ON T0.ItemCode = T1.ItemCode  left JOIN OINV T3 ON T1.DocEntry = T3.DocEntry WHERE T1.[Quantity] is null and  T0.[U_Customer] = T3.cardname and T3.docdate between [%0] and [%1]

GROUP BY T0.[ItemCode], T0.[ItemName], T0.[OnHand]

 

Thanks & Regards,

Nagarajan

Re: BEx Error : System error in program CL_RSR_RRI2_FAGGR

$
0
0

Hi Ranjan,

 

It seems to me a program error (bug). Please search for SAP Notes or create an SAP Support Message.

 

Best regards,

Sander


Re: java.lang.ClassCastException: com.sap.security.um.provider.neo.local.UserProviderImpl cannot be cast to com.sap.security.um.user.UserProvider

$
0
0

Hi Martin, have tried running the same code on Tomcat and Java Web,

 

installing the latest Tomcat sdk now - seems I was running a 2.12 sdk whereas latest is 2.15 (although latest on tools.hana.ondemand.com is 2.13

 

hopefully will work with later SDK.

 

will let you know,

Re: Query Report

looking for BOXI 3.1 SP5 client tool

$
0
0

looking for BOXI 3.1 SP5 client tool

PO change via ORDRSP is not triggering EXIT_SAPMM06E_013

$
0
0

Dear Gurus,

 

 

Could you please help me if any of you know how I can trigger userexit during PO change (add confirmation) via ORDRSP?

 

[Requirement]

Send an email to user when a specific confirmation category is added to PO

[What's done]

Implement a logit in EXIT_SAPMM06E_013 (include: ZXM06U44) to cator the requirement.

It is working fine when the confirmation is added to PO via ME22N online.

 

[Issue]

When the confirmation is added via IDOC (ORDRSP), it seems EXIT_SAPMM06E_013 is not triggered and no email is sent to user.

 

[Question]

Is EXIT_SAPMM06E_013 right place for this requirement?

If not, which user exit should I use?

 

As long as I search in the web, it seems EXIT_SAPMM06E_013 is the right place to implement a logic when we need to trigger it just before saving PO change.

But even though I set a breakpoint in there, a debugger is not started during IDOC processing.

 

I really need to know which is the right place for this requirement as soon as possible.

Your help would be greately appreciated.

 

 

Best Regards,

Mari

 

Re: SO Consignment fill up item category type change in Consignment issue (Error) become backorder

$
0
0

OVZI comparison

Consignment issue1.jpg

 

can you describe more about vov6 ?

 

Best regards

Aprisyam Halim

Viewing all 8746 articles
Browse latest View live




Latest Images