Mapping without HR

Dear Experts,
How do you handle Salary & wages if you are not implementing HR for manufacturing industry.
Rgds,
PK

Hi,
one way (apart from manually posting GL entries); the HR-Tool delivers the posting content which can be processed in SAP using RFBIBL00.
Best regards, Christian

Similar Messages

  • Duplicate Message ID issue in case of Multi mapping (without BPM)

    Hi Experts,
    I am doing one sample Example for my requirement of converting the single source message data into the multiple Target messages.
    for example, when sender system is sending the 5 sale order details into a single message in PI then my Inbound proxy class of ECC R/3 receiver system must get this sale orders separately, that means inbound proxy class method must be triggered separately for 5 sale orders from sender system. for achieving this, I have used the Multi mapping concept in ESR (without BPM).
    This scenario is in Asynchronous mode.
    The below screen shots give the details on what I have configures so far.
    IN ESR
    IN ID
    IN SXMB_MONI of PI
    IN SXMB_MONI of ECC R/3 Receiver system (Error in Processing)
    due to this error, inbound Proxy class method is not being triggered for the single Sale order details as well,
    please let me know how to tackle this duplicate message ID issue when we have multiple payloads to process in a single message.
    please also let me know if is there any other workaround to fulfil this requirement.
    Thank you,
    Regards,
    Jagesh

    Hi Nunu,
    Check the below blog for restrictions.
    Multi-Mapping without BPM - Yes, it’s possible!
    Restrictions
    Messages that result from the split in a mapping-based message split are sent using one AE. So only adapters running on the AE are supported. In particular, this means that target IDOC message splits are not supported since the IDOC adapter is not part of the AE.
    Regards,
    Praveen.

  • Multi-Mapping without BPM

    Hi ,
    I am following this weblog
    /people/jin.shin/blog/2006/02/07/multi-mapping-without-bpm--yes-it146s-possible
    but stuck up with what are the fields contained by ID in target message2 ...
    Please check this for your clarification
    http://www.flickr.com/photos/11212307@N08/1135395357/
    Thanks
    dushanth

    ID will have only ID under it. instead of creating flat structure like the one above Jin has changed the strucutre below . you will have only ID field in it or you want u can add other fields in it .
    Regards
    Sreeram.G.Reddy

  • N:1 mapping without BPM

    Hi All,
    Is it possible to do N:1 mapping without BPM in PI 7.1 ?
    Thanks and regards
    Uma

    Hi,
    >Yeah, It is possible.
    how can it be possible based on ANY requirement ?
    you just cannot receive many messages into PI and bundle them into
    one without BPM - and this is final
    can you tell the way if you know how to do it without a BPM
    in any (even very specific) scenario ?
    thanks,
    Regards,
    Michal Krawczyk

  • 1:N mapping without BPM ( Idoc Receiver)

    Hi,
    I have a scenario like 1:N, source would be JMS and the receiver side have two Idocs with the same business system. based on one Item segment value, I need to route the input JMS message to corresponding receiver IDoc.
    INput Structure:
    Record
    Header 1..1
    H1
    H2
    H3
    Item 1..Unbounded
    I1
    I2
    I3
    NOte: Based on value I2, I need to route the message to corresponding receiver Idoc. like If I2=A then Idoc1 and I2=B then Idoc2. Can we achieve the same without using BPM?
    -Esha

    Hi,
    This can be achieved with Interface Determination conditions. Go for 2 mapping. And in Interface Determination put condition to check which mapping to use. No need of ccBPM.
    If you still want to go for 1:N multimapping please refer link:
    /people/jin.shin/blog/2006/02/07/multi-mapping-without-bpm--yes-it146s-possible
    without BPM.
    Regards,
    Vineetha.
    Edited by: Vineetha on Apr 27, 2010 11:44 AM

  • Error in Multi-mapping without BPM

    Hi frnds,
    I am doing a scenario File-XI-File. I am using the multi-splitting thing in the Message mapping. I have taken care of all the occurance's and "enhanced" thing in the IR and ID resp. I m using SP16. I want to avoid BPM.
    But therez sme error cming up. When I check the MONI, its shwing "No messages created from split mapping" and when I test my interface using the Test Configuration in the ID, its shwing error in the Receiver Determination -- "HTTP connection to ABAP Runtime failed. Error: 403 Forbidden"
    I have checked most of the blogs and forum suggestions. I have checked the ICF activations as well ...
    So, do come back to me with your valuable suggestions, and I will award them points, if they really help me out.
    Thanks and regards.
    Neetesh

    Hi Neetesh,
    <i>
    When I check the MONI, its shwing "No messages created from split mapping"</i>
    For this, Can you check the source XML. Does it contain Tags like <messages> .. If yes, you need to remove them from your source XML.
    If i am right, you have copied the XML from the TEST tab of the message mapping and pasted it in a notepad and saved it without making any changes at all..... Just do as i have mentioned above and i am sure you will no more get that error message in your MONI....
    Also go through this weblog which talks about multi-mapping without BPM,
    /people/jin.shin/blog/2006/02/07/multi-mapping-without-bpm--yes-it146s-possible
    Regards,
    Abhy

  • File to file mapping without xml

    Hello,
    is there a possible way to use a PI7.1 file to file mapping (one static-positioned field must be mapped) without storing the file in xml format ?
    We are having a flatfile and have to send this flatfile through our jms receiver adapter(as flatfile structure) but there is one important field which has to be mapped/changed(static value for all files).
    Our SAP Applikation (File sender) would avoid to change this during or after creating the flatfiles in the R/3 System.
    Thanks,
    Gordon

    Hi Gordon,
    >- Do you have an example for that abap mapping ?
    DATA g_str TYPE string.
      CALL FUNCTION 'ECATT_CONV_XSTRING_TO_STRING'
        EXPORTING
          im_xstring  = source
          im_encoding = 'UTF-8'
        IMPORTING
          ex_string   = g_str.
      REPLACE 'ABC' WITH 'XYZ' INTO g_str.
      CALL FUNCTION 'ECATT_CONV_STRING_TO_XSTRING'
        EXPORTING
          im_string   = g_str
          im_encoding = 'UTF-8'
        IMPORTING
          ex_xstring  = result.
    >I think i have to use some entry parameters for my interface right ?
    ?? no..
    >- Is it possible to use that within the integrated configuration ?
    ??  yes..
    Regards,
    Udo

  • Array of Maps without generic or warnings?

    How would I create an array of maps without getting an error about a generic type or a warning?
    This will give me an error.
    HashMap<Integer,Integer> test = new HashMap<Integer,Integer>[5];This will give me a warning.
    HashMap<Integer,Integer> test = new HashMap[5];

    Dennis_Martinez wrote:
    Could I see an example? I'm a little lost on doing so.I suspect you know how to use lists and ask for an example demonstrating the inherent unsafety. So here it is:
    List<String>[] generic = new List<String>[1]; // assume this works
    List<Integer> ints = new ArrayList<Integer>();
    ints.add(42);
    Object[] o = generic;
    o[0] = ints; // this should not work, but it does (erasure)
    List<String> strings = generic[0]; // really it's a list of Integers, ohoh
    // now you pass that list somewhere completely unrelated and try to get an element:
    String s = strings.get(0); // ClassCastExceptionCompare this to:
    String[] strings = new String[1];
    Object[] objects = strings;
    objects[0] = 42; // ArrayStoreExceptionWith kind regards
    Ben

  • 1:N mapping without using BPM

    Hi All,
    I am facing a problem in 1:N mapping without using BPM...
    I would explain regarding it first...
    Scenarion is from SAP > XI> 3files
    I have 4 XSD's 1) one is Source Idoc XSD (all xsd's imported to External def.s)
                          2) target file 1 XSD
                           3) target file 2 XSD
                          4) target file 3 xsd
    I have created 4 message interfaces one is Outbound and rest 3 are Inbound
    and also i have done mapping : In mapping messages tab i have mentioned the 3 XSD(External definitions) and done the mapping as required...
    But now my problem is how to proceed with Interface mapping ...
    should i create 3 interface mappings ( ithink no) ... but in IM i am able to create for only one taget Interface .. how to with 3 XSD's ...
    Any solution is always thankfull...
    and Points are surely rewarded....
    Thanks and Regards,
    Sridhar Reddy

    Hi Sridhar,
    Receiver Determinatiion: one Receiver without Condition (Service that has all the Three inbound Interfaces).
    Then in Interface Determination choose enhanced  and choose ur Interface Mapping that has the Multi Mapping.
    It will automatically provide the three inbound Interfaces and u can create ur receiver agreements.
    Reference Blog:
    <a href="/people/jin.shin/blog/2006/02/07/multi-mapping-without-bpm--yes-it146s-possible:///people/jin.shin/blog/2006/02/07/multi-mapping-without-bpm--yes-it146s-possible
    Regards,
    Sudharshan

  • 1:n mapping without BPM

    Hello Friends,
    I need some help about this mapping issue.
    input file :
    <SOAP:Envelope xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/">
         <SOAP:Header></SOAP:Header>
         <SOAP:Body>
              <Object_1>
                   <ID>12222333444</ID>
                   <points>50</points>
              </Object_1>
              <Object_1>
                   <ID>12222333555</ID>
                   <points>20</points>
              </Object_1>
              <Object_1>
                   <ID>1222233777</ID>
                   <points>10</points>
              </Object_1>
         </SOAP:Body>
    </SOAP:Envelope>
    output file1 :
    <SOAP:Envelope xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/">
         <SOAP:Header></SOAP:Header>
         <SOAP:Body>
              <Object_1>
                  <ID>12222333444</ID>
                   <points>50</points>
              </Object_1>
         </SOAP:Body>
    </SOAP:Envelope>
    output file 2 :
    <SOAP:Envelope xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/">
         <SOAP:Header></SOAP:Header>
         <SOAP:Body>
              <Object_1>
                  <ID>12222333555</ID>
                   <points>20</points>
              </Object_1>
         </SOAP:Body>
    </SOAP:Envelope>
    output file 3 :
    <SOAP:Envelope xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/">
         <SOAP:Header></SOAP:Header>
         <SOAP:Body>
              <Object_1>
                  <ID>1222233777</ID>
                   <points>10</points>
              </Object_1>
         </SOAP:Body>
    </SOAP:Envelope>
    Best regards,
    FK

    I think you have not followed the blog properly for your requirement.
    for example: Source File is like this.
    <Records>
      <FirstName>Sarvesh</FirstName>
      <LastName>Singh</LastName>
      <Dept>SAP</Dept>
      <EmpID>12345</EmpID>
      <Domain>technical conslultant</Domain>
      <Experience>5 years</Experience>
    </Records>
    'N' Target Structure are
    <Records>
      <EmpName>
               <FirstName>Sarvesh</FirstName>
               <LastName>Singh</LastName>
      </EmpName>
    </Records>
    <Records>
      <EmpDetail>
             <Dept>SAP</Dept>
             <EmpID>12345</EmpID>
             <Domain>technical conslultant</Domain>
             <Experience>5 years</Experience>
      <EmpDetail>
    </Records>
    So if you think your requirement is as per the above examples then follow /people/jin.shin/blog/2006/02/07/multi-mapping-without-bpm--yes-it146s-possible blog.
    Regards,
    Sarvesh

  • 1:N Mapping without BPM - Inbound Structure

    Hello,
    I know that a 1:N Mapping without BPM should be possible with newer releases. I tried to do so and set the occurences in the signature tab of message mapping to 1:N.
    However the problem I am facing right now is that a new <Messages> element is wrapped around the source structure. So the incoming message is not valid anymore and therefore the target structure is empty. How should this be handled? Does the source system need to add a new <messages> root element or is ccBPM not avoidable in my case?
    Thank you!

    Hi Guppenberger,
    I understand your doing 1:N mapping without BPM.
    There is no need to added the message wrapper when you are testing your scenario end to end. But if you are testing your message mapping alone, wrapper is required in test tab of Message Mapping. Please refer this blow [Link|/people/ranga.rajan2/blog/2010/03/17/multi-mapping-with-a-simple-scenario--fledgling-kit ], have a look at payload screenshot. I suggest you to check you payload (for end to end testing) and mapping logic again.
    Regards,
    Raghu_Vamsee

  • Sequential mapping without using BPM

    I have a requirement where i need to do a sequential mapping without using BPM. IDoc to file is the first mapping.A few fields of the IDoc are transformed in this mapping. Output of this first one should contain the transformed as well as rest of the fields of the IDoc as it is coz they will be used in the second mapping.
    Is this possible any way?

    yes soumen...u can do it.in the interface mapping option is there to do that...
    but u can do it in a single mapping!!!
    go thro'  this general Idoc to file scenario...u may get some help
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/e07dcaa0-a92b-2a10-3a96-b3d942bd1539

  • E90 Using Nokia Maps without using Data from mobil...

    Is it possible to use the integrated GPS in the E90 with Nokia Maps WITHOUT connecting through mobile data and incurring data cost? Is there any other 3rd party GPS navigation software that would work like Nokia Maps, using stored maps et al, so you do not have to constantly download maps via your service provider, AND give you navigation instructions? As I understand, one has to pay for the "navigation" part of Nokia Maps.
    If I am totally out to lunch, would someone please correct me? Thanks!

    Hi chanimal
    How about Route66?
    Happy to have helped forum in a small way with a Support Ratio = 37.0

  • Route tracking with Ovi Maps without internet conn...

    I have been trying to find an app, which would track my  route without connecting to the  internet. This is important in two cases: 1. when there is no service (in the mountains, for instance) 2. when it is prohibitively expensive (like abroad). It is great that I can download Ovi Maps for any location in the world, but I cannot really use it as every app that I know is trying to connect. I found one app, which came close, Parking 2. It does use Ove Maps and one would think that you can track back your car looking at the pre-loaded maps, but this is not the case. It still connects and then loads the maps (which are already pre-loaded on the phone!). And if there is no connection, there are no maps.
    Does anyone know of a free or paid app, which can do exactly that: track your route based on the pre-loaded Ovi Maps without connecting to the net?
    Thank you in advance for any info
    Solved!
    Go to Solution.

    @optiplex - I Understand where you are coming from. It sounds fairly simple. Unfortunately, the maps that ovi has for places like ladakh and other places in the Himalayas are fairly featureless. There are no contours on the map for where the terrain is mountainous. For instance, I have planned an expedition in the Tsomoriri - Peldo - Skarchyu sector. The Terrain ranges from 15000 ft to 22000 + ft. Straight line just aint gonna work. If the map were bit more detailed then I could actually set way points to the destination and then work one way point at a time. Unfortunately, while I am happy that the GPS on N8 works wonderfully well without GPRS/3G or any cellular network, the ovi maps are a let down, in that they are not very detailed. (not talking about cities and towns and not referring to drive navigation at all which according to me works beautifully.)
    optiplex330 wrote:
    gvp1995 wrote:
    When I am hiking in the mountains, or when I am abroad touring across some city, I want to see my route on the map, so I can always find my way back.
    1. OVI Maps and Sport Tracker does not need Internet connection if you did the setting correctly.
    2. Sport Tracker will record your trail. The trail can be shown on the Sport Tracker maps. The trail record can also be exported out as KML file and on the PC screen, display the trail on Google Earth.
    Unfortunately, I don't think you can use the trail record to guide you back to your starting position while in the mountain.
    So how about this method using OVI maps.
    1. Set your Walk navigation to "Straight Line" instead of "Street".
    2. Record your starting position as a Favorite on OVI Maps.
    3. Walk into the mountain.
    3. Use OVI Maps to navigate back to your starting position by selecting "Walk to". OVI maps will show how far and the built in compass will show you which direction is your starting position.
    Not sure whether this is what you needed.

  • Viewing Nokia maps without satellite

    Hi all,
    Have downloaded Nokia maps how can I view the maps without connecting to satellite.

    05-Oct-2008 04:26 AM
    mrnotia wrote:
    Have downloaded Nokia maps how can I view the maps without connecting to satellite.
    Hi mrnotia
    Do you mean by this that you don't want to use a GPRS connection so that assisted GPS feature will not work, as provided internal GPS is enabled it will still lock onto satellites albeit more slowly unless outside?
    If you have access to a WLAN this can always be the chosen access point if you want.
    If you have downloaded regional maps you can use the "*" and "#" keys to zoom in/out and the cursor to traverse maps.
    Happy to have helped forum in a small way with a Support Ratio = 37.0

  • Bug with custom edm mapping without registry key

    Hello!
    I have use custom mapping for boolean type by standart scheme:
    <oracle.dataaccess.client>
    <settings>
    <add name="bool" value="edmmapping number(1,0)" />
    </settings>
    </oracle.dataaccess.client>
    But this is not working if the registry key "HKLM\SOFTWARE\Oracle\ODP.NET" doesn't exists.
    With reflector I found the reason in your internal class Oracle.DataAccess.ClientRegAndConfigRdr
    static RegAndConfigRdr()
    RegistryKey registryKey = Registry.LocalMachine.OpenSubKey("SOFTWARE\\Oracle\\ODP.NET");
    if (registryKey == null)
    return;
    string[] subKeyNames = registryKey.GetSubKeyNames();
    string assemblyVersion = OracleInit.GetAssemblyVersion();
    for (int index = 0; index < subKeyNames.Length; ++index)
    if (assemblyVersion == subKeyNames[index])
    RegAndConfigRdr.odpNetKey = registryKey.OpenSubKey(assemblyVersion);
    RegAndConfigRdr.RetrieveInfoFromConfig(RegAndConfigRdr.m_configSection, ref RegAndConfigRdr.s_storedProcInformation, false);
    RegAndConfigRdr.ValidateEdmMapping();
    I think you must correct this condition. Because of reading for mapping types is located at RegAndConfigRdr.RetrieveInfoFromConfig method.
    WBR, Alexandre

    I will soon take a look at it, and update this thread with feedback.
    Cheers,
    Jean-Francois
    Jean-Francois-
    There's no built-in mapping to support this. One problem with it is that
    if the user mutates the Map so that the file name and the file object's
    name do not match, then that couldn't be stored to the datastore, so
    data fidelity fails in some cases.
    However, given that you are willing to accept that, you might be able to
    do this by using a "map" mapping, setting both the "key-column" and
    "value-column" to the same column, and then setting an externalizer
    on the "value-column" that stores the File object as a String. I don't
    know if this has ever been tested, but I don't see any reason why it
    wouldn't work.
    You can read more about externalizers at:>
    http://docs.solarmetric.com/manual.html#ref_guide_mapping_fieldmapping_extern
    If you do try it, I'd be interested in hearing the results of this
    mapping experiment.
    In article <d80ts3$tej$[email protected]>, J-F Daune wrote:
    Hi all,
    is it possible to use a map mapping without a join table ?
    I face this issue for mapping a relation between two classes using a UML
    qualifier. Imagine, for instance, a SwPackage made of several File each
    having a unique name.
    The implementation model would be a SwPackage class with a Map using file
    name as key and File instance as value.
    The 'natural' data model would be
    - SW_PACKAGE table with POID surrogate key
    - FILE table with its own POID, a SW_PACKAGE_POID foreign key and a NAME
    column
    Kodo does not provide a direct mapping for this, as it would require a
    SW_PACKAGE_HAS_FILE join table holding the 'name' value.
    I am reluctant changing so much my data model to a 'non-natural' form.
    I am currently thinking of using a Set in my SwPackage class for Kodo
    mapping, and programmatically replicating its content in a Map.
    Is there a more clever way to handle this with Kodo ? Maybe with a custom
    mapping ?
    Regards,
    Jean-Fran__ois
    Marc Prud'hommeaux
    SolarMetric Inc.

Maybe you are looking for

  • Composite video out to TV

    This may be a question easily answered but I don't pretend to have any knowledge in this area. With my G5 iMac can I get a composite video out to plug it into my 42" Sony HDTV and if I did what sort of quality would it be? As in would it be High Defi

  • Can a PL/SQL code of timesten be called in oracle or vice versa

    Hi In IMDB cache setup with AWT cache group , the pl/sql code or procedure that is written in oracleDB can it be called in TimesTen and vice versa example: In a stored procedure the DML's that are performed will be updating the cache tables and log t

  • Smartcardio ResponseAPDU buffer size issue?

    Greetings All, I’ve been using the javax.smartcardio API to interface with smart cards for around a year now but I’ve recently come across an issue that may be beyond me. My issue is that I whenever I’m trying to extract a large data object from a sm

  • Message marked as read

    Hi! I just purchased a Blackberry Curve 9300.. I sent an email (I have a yahoo account) using my blackberry to a friend on her Yahoo Mail address. I asked her to check whether she got my email  and she said yes, although she did not open the email. T

  • Computer name being show as "localhost" when trying to bind to directory

    I am trying to bind my computer (OS 10.4.11) to my server (10.4.11) but each time I go to bind it the computer name is shown as "localhost" rather than the computer's real name. The computer's name is shown as r2.local in the Sharing pane of System P