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

Re: Regarding Multi mapping

$
0
0

Hi Vishnu.

 

Please find logic and other details in PFA.

I have checked for Location with IfWithoutElse boolean function and given source and target fileds as accordingly but since "ns1:MT_SENDER_MULTI_MAP" itself don't contain any value so target filed is coming as "".

You can add values in the test xml, just go to mapping test tab, select generate instance and then add the values there.

 

Regards,

Mark


Importing Parameters of Adobe Form

$
0
0

Hi Experts,

 

I have a global Structure defined in global definations of Adobe Form Interface. This structure is of a type decalred in Type of Global Interface.

 

When I try to declare a importing of the global Structure I get a error message that structure does not exist.

 

Is there a way to declare Importing parameter of Global variable defined in the Interface?

 

Thanks

Govind

Re: Currency translation not working for just one period

$
0
0

Hi,

 

I am wondering why you are getting error like - "Member (2015.Q1)....." and I see you have TIMEID same for 2015.Q1 (1st screen) and 2016.05 (3rd screen).

 

Please check TIMEIDs.

 

Thanks & Regards,

Prashant Vankudre

Re: System replication async mode

$
0
0

Hi Sunil,

 

Ultimately the snapshots are transferred. If the master node is extremely large then inspite of using dedicated replication networks it wont help.

Re: Long object to LOB object

$
0
0

Basically the long data occupied before the import and after the import using R3load drastically reduced.

Re: Is HANA rev 74 compatible with SQL 2014

$
0
0

Hi,

 

Your requirement is not clear.

 

HANA is not compatible with SQL server.

 

Thanks.

Re: Standard datasource on tables VTBFHA and VTBFHAPO

$
0
0

Hi Naveen,

 

Please review DataSource 0CFM_FI_TRA_ATTR. It retrieves data from tables like VTBFHA and VTBFHAPO. However, it is a master data DataSource.

If it does not bring what you are looking for, then a generic DataSource e.g. based on view VW_VTBFHA might be a good approach.

 

You can read discussion standard data targets on vw_vtbfha table for further information.

 

Best regards,

Sander

Re: Passing Select-options as parameter to function module

$
0
0

there  is one other way you can get the high and low values of select options by using high and low fields like

          select-options: d for data.

          write: d-high.

          write: d-low.

then you can pass these individual values to the function module and in function module you can create ranges for similar type and assign its high and low value to the value passed.


Re: Target Cost in Production Order

Re: NSA for particular pay scale groups in Payroll

$
0
0

shift_allow_sample.JPG

Hi,

refer the line below "OUTWPPERSB EE subgroup in v.key". In your case it should be "OUTWPTRFGR".

 

regards,

bala.

Re: Issue with passing variable to INSERT statement in the HANA xsjs file

$
0
0

Well, of course you need to adapt it to your code reality. Either way, this is what it would look like:

 

[...]
var pstmt = conn.prepareStatement("INSERT INTO \"SYSTEM\".\"LOOPS\" VALUES (?)");
for (i = 1; i < 100; i++)
{
pstmt.setInteger(1,i);
pstmt.execute();
}
[...]

Using the hdb namespace you could have the following:

 

[...]
var strQuery = "INSERT INTO \"SYSTEM\".\"LOOPS\" VALUES (?)";
var conn = $.hdb.getConnection();
var i = 1;
for (i = 1; i < 100; i++) {
conn.executeUpdate(strQuery,i);
}
conn.commit();
[...]

Get familiar with the XS JS API here:  JSDoc: Index

 

One last thing: "LOOP" is a SQL reserved word in HANA. Not sure how (or if) you managed to use it as a table. Anyhow: don't use it.

 

BRs,

Lucas de Oliveira

Re: COPI - printing of shopfloor papers using custom selection criteria?

$
0
0

Hello Mark,

 

I know this is a far fetched request considering it's quite a old thread.

I have similar (and bit complex scenarios) and would request any pointers which you can provide in this regard. Thanks in anticipation!

 

~Ashish

Re: Workflow with custom tables and programs

$
0
0

Hi,

 

It sounds to me like your scenario is a good fit for workflow. If you have a taken an object-oriented approach in your development (using BOR objects or classes), it will be relatively easy to create a workflow that will slot into your development.

 

Object events are used to control the starting (or stopping) of workflow; object methods are used in workflow steps, and object attributes are used in workitem texts (and to control the flow).

 

The issues that you are encountering (that everyone encounters!) have been solved by workflow. It is a very powerful tool.

 

You might want to post specific questions to the SAP Business Workflow space.

 

cheers

Paul

Re: Need Help Please

$
0
0

contact any approved SAP Partner in your area for training material and demo system rest their so no trick other then GOOGLE

Re: Issue with passing variable to INSERT statement in the HANA xsjs file

$
0
0

The hdb is somehow not working but as soon as I set it back to db, the code works. Do you know of any reason it might be that way?


Re: WM-PP updation of TR on chnage of process order

$
0
0

Many situation arises in real life, like Sales asked for additional production, std component of BOM need substitution etc, which may need change in released process order.

 

Let me know what feature in OPKP will address my issue.

Re: How to align button e.g. in a panel?

$
0
0

what if alignment requires in the title ???

Re: Scope in MM for a Manufacturing Industry Experience Person ???

$
0
0

I started my career in IT and was involved in support and develpment projects of client specific tools, and later involved in understanding business, project implementation, RFQ etc.. project management activities for 2 years and than last 1 year i learned SAP MM and was understanding client requirements for SAP migration and one sap mm functional activities for few months for the client... Due to some personal reason, i have to leave the project in between



Thanks for your reply

OpenUI5 Grunt build tools - watching files config?

$
0
0

When working with the github OpenUI5 repo's grunt build tools I enjoy the "watch" feature which allows one to make changes to JavaScript or Less files (in src mode) and see them in action after a simple browser refresh.

 

I see how "load-grunt-config" is used to split up configuration into separate files in the grunt/config folder. In that folder there is a watch.js file which defines the files to watch, separated by "styles" and "js".

 

When I looked more into the grunt-contrib-watch module it seems that it not only needs the files to watch, but also a "tasks" array which defines the action to take.

 

But the "tasks" array seems to be missing from grunt/config/watch.js.

 

So, how does the watch functionality know what to do (such as invoking lessc) when a file changes? Is there a mapping somewhere that matches the "styles" and "js" objects to particular tasks?

Re: BEx query with conditions is not working as replacement path

$
0
0

The important rule of prequery is: in the main query, the prequery is only exeuted with the relavent characteristic drilled down. Therefore the condition has to defined to work when only the replaced characteristic is drilled down.

If you need created date in your formula, you could use it in query in free characteristic, then use exception aggregation defined on created date on the formula. In this way you will get implicit drill down of created date in the formula.


Viewing all 3446 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>