Issues while executing Jobs - Rapid Mart Accounts Payable

Hello,
We are implementing A/c Payable  rapid marts at customer location.
We installed dataservices and above it installed RM AP XI3.0.
We successfully configured  source and target DS.
When we validated the Jobs ,
we faced the following error :
[Query:SetLoadDateTime]
Invalid mapping expression for column <SetLoadDateTime.EXCHANGE_TYPE_ID>. Additional information: <Cannot parse expression.
Column <EXCHANGE_TYPE_ID> was not found in table <Effective_Date_1>. Please check the spelling of the referenced column and ensure such a column exists in the table.. (BODI-1112351)>. (BODI-1111081)
[Query:SetLoadDateTime]
Invalid mapping expression for column <SetLoadDateTime.FROM_CURRENCY_ID>. Additional information: <Cannot parse expression.
Column <FROM_CURRENCY_ID> was not found in table <Effective_Date_1>. Please check the spelling of the referenced column and ensure such a column exists in the table.. (BODI-1112351)>. (BODI-1111081)
[Query:SetLoadDateTime]
Invalid mapping expression for column <SetLoadDateTime.TO_CURRENCY_ID>. Additional information: <Cannot parse expression.
Column <TO_CURRENCY_ID> was not found in table <Effective_Date_1>. Please check the spelling of the referenced column and ensure such a column exists in the table.. (BODI-1112351)>. (BODI-1111081)
and some more errors with same query SetLoadDateTime.
We uploaded the file "fiscal_dates.dat"  in the SAP server "
JUB02SAPJRD\BO_SHARE" ( which is used in DS setting )
as mentioned in the Installation log.
Would really appreciate any pointers wrt this issue.
Thanks and regards,
Vinay

1. Can you check whether the System User ID with which Data Services try to fetch the auxillay files placed folder?
2. How did you test the configurations? Have test run any job to test all the connectitivities required?

Similar Messages

  • Short dump while executing job SM:EXEC SERVICES for EWA alert generation

    Hello All,
    I'm getting short dump error while executing job SM:EXEC SERVICES for EWA alert generation.I'm using EHP1@SP22 of Sol Man.
    Please find the logs
    Error in the ABAP Application Program
    The current ABAP program "SAPLDSVAS_PROC" had to be terminated because it has
    come across a statement that unfortunately cannot be executed.
    The following syntax error occurred in program "RDSVASCABAP_TRANS__________073
    " in include "RDSVASIABAP_TRANS__________073 " in
    line 1782:
    "Field "STATEMENT_SUMMARY001019" is unknown. It is neither in one of th"
    "e specified tables nor defined by a "DATA" statement. "DATA" statement"
    The include has been created and last changed by:
    Created by: "SAP "
    Last changed by: "SAP "
    Error in the ABAP Application Program
    The current ABAP program "SAPLDSVAS_PROC" had to be terminated because it has
    come across a statement that unfortunately cannot be executed.
    If anyone came across such kind of dump, please reply asap, due to this, i could not generate EWA report for R/3 system 6.04.
    Thanks,
    Anand.

    >
    Anand Tigadikar wrote:
    > Thx Paul, but i already did checked this note and its not solving my issue
    Dear Anand,
    Did you perform a complete service definition replacement for SDCC/SDCCN as described in the note?
    These are manual steps you need to perform on the system and are not code corrections.
    I would suggest you perform it, if you have not, and check the SDCCN logs to review the process ran cleanly.
    Note: Please make sure SDCC_OSS is functioning and a connection to SAP can be made before
    deleting the service definitions.
    If you have already replaced the service defintions on the Solution Manager system, then no point doing it again. However checking a note and applying it are not the same thing. So I am uncertain if you replaced the service definitions or not. The dump you are getting in SM:EXEC SERVICES suggests its due to a problem with the service definitons. The recommendation is to replace them according to the process described in SAP Note 727998. If you have not done so please do so.
    If you have successfully replaced the service definitions are you still getting the same dump, or has it possibly changed?
    Regards,
    Paul

  • Authorization issue while executing a Web Template in SAP BI

    Hello All,
    I am facing an issue while executing a webtemplate .
    I have a webtemplate which is being executed by end user, upon execution user must be able to fill in the value for data and submit. The query uses a characteristic KPI identifier ,SBU,BU,product, Region,Affiliate etc . All the mentioned charcaterisitics in Analysis authorization have * value except  KPI identifier and SBU. And Activity 02,03 is provided for the infoprovider.
    When a single value (Ex:KPI01) is provided in KPI identifier the webtemplate works fine in change mode. But when additonal value (Ex KPI02) is being added to the characterstic KPI identifier the webtemplate opens only in display mode. There is no authorization failure as well in the RSEC trace.
    Actually we created two separate roles for each KPI identifier earlier but when two roles provided to a user in combination it was behaving the way i mentioned above. So we tried to create a single role with two values of KPI Identifier in single analysis authorization and it is still the same.
    Please suggest what might be the reason for this behavior. Thank you
    Regards,
    Mohammed Ghouse

    Hi Brian,
    Thanks for your reply
    RSECADMIN does not show any missing authorizations when checked , but what is observed is that the check happens only on display
    These are the characteristics being checked by the query
    Characteristic      Content in SQL format
    OTCACTVT         GRI_IC005 IN ('KPI054','KPI055')
    GRI_IC005          AND GRI_IC007 = 'MFE'
                                AND 0TCAACTVT = '02'
    GRI_IC007
    Comparison with Following Authorized Set
    Characteristic      Content in SQL format
    0TCAACTVT      I CP *
    GRI_IC005        I EQ KPI054
                               I EQ KPI055
    GRI_IC007          I EQ MFE
    And it says its authorized. But still the screen is in display mode. What might be the reason for this behavior.

  • Issue While executing the Query for Pagination using ROWNUM with like

    Issue While executing the Query for Pagination using ROWNUM with like.
    Database is Oracle11G.
    Oracle Database Table contains 8-9 lakh records
    1) SQL equal (=)
    SELECT /*+ FIRST_ROWS(n) */ ROWNUM RNUM, A.* FROM LINE A
    WHERE A.REFERENCE = 'KMF22600920'
    Execution Time:- 0.00869245 seconds
    Returns 2 resultsets
    2) SQL like (one %)
    SELECT /*+ FIRST_ROWS(n) */ ROWNUM RNUM, A.* FROM LINE A
    WHERE A.REFERENCE = 'KMF22600920%'
    Execution Time:- 0.01094301 seconds
    Returns 2 resultsets
    3) SQL like (two%)
    SELECT /*+ FIRST_ROWS(n) */ ROWNUM RNUM, A.* FROM LINE A
    WHERE A.REFERENCE like '%KMF22600920%'
    Execution Time:- 6.43989658 seconds
    Returns 2 resultsets
    In Pagination, we are using Modified version of SQL Query 3) with ROWNUM as mentioned below :-
    4) SELECT * FROM (
    SELECT /*+ FIRST_ROWS(n) */ ROWNUM RNUM, A.* FROM LINE A
    WHERE REFERENCE like '%KMF22600920%' AND ROWNUM <= 20 ) WHERE RNUM > 0
    Execution Time:- Infinite
    ResultSets:- No as execution time is infinite
    a) Instead of like if we use = in the above query it is returning the 2 resultsets (execution time 0.02699282 seconds)
    b) Instead of two % in the above query, if use one example REFERENCE like 'KMF22600920%' it is returning the 2 resultsets (execution time 0.03313019 seconds)
    Issue:- When using two % in like in the above query i.e. REFERENCE like '%KMF22600920%' AND ROWNUM <= 20 ) , it is going to infinite.
    Could you please let us know what is the issue with two % used in like and rownum
    5) Modified version of Option1 query (move out the RNUM condition AND RNUM <= 20)
    SELECT * FROM (
    SELECT /*+ FIRST_ROWS(n) */ ROWNUM RNUM, A.* FROM LINE A
    WHERE REFERENCE like '%KMF22600920%' ) WHERE RNUM > 0 AND RNUM <= 20
    Execution Time:- 7.41368914 seconds
    Returns 2 resultsets
    Is the above query is best optimized query which should be used for the Pagination or still can improve on this ?

    This would be easier to diagnose if there was an explain plan posted for the 'good' and 'bad' queries. Generally speaking using '%' on both sides precludes the use of any indexes.

  • Issue while executing the report

    Hello experts,
    I have an issue related to executing the BI Report. In one report , i get an issue of Time Out, as the report is executed for a single day only with a single restriction. Also i execute the same report in RSRT, there also it gives a short dump. I checked the data into the related component for the same selection parameter values. here I get the data but it is creating issue while executing in RSRT or analyser or EP.
    what is happening there am not able to understand. please advice.
    Also searched in SDN but not get the relevant thread.
    Thanks in advance
    Neha

    hii
    The query does not includes any RKF, CKF any complex calculations. as I said before also query is based on MP which is designed on a single Cube. There are no such navigational Attributes used for selection, Number of records are not more than 300 on that particular selection parameter
    there is only one info object which is creating issue & it is a master info object. If i am restricting this info object in the query & then executes the query , it gives the error msg also i put a variable for input parameter, & there I restrict the value, then also query executes with an error msg
    But if query is not restricted with  any value for that info object then query executes with in a second.
    Thanks
    neha

  • Issue while executing the discovery command from target nodes

    Hi Experts.
    I had to create cluster two node using openfile, after creation of successful lun and associated partition from all the nodes i have changed the ip address of openfiler.
    After changing the IP on open filer.
    A) openfile version:-
    [root@san ~]# uname -r
    2.6.26.8-1.0.11.smp.pae.gcc3.4.x86.i686
    B) Linux Oel5:-
    [root@rac1 ~]# uname -r
    2.6.18-194.el5xen
    [root@rac1 ~]#
    1:- I am able to ping and ssh etc from any node to openfiler.
    However, while executing the below command i am facing the below exception..
    service iscsi restart
    Stopping iSCSI daemon:
    iscsid dead but pid file exists [  OK  ]
    Starting iSCSI daemon: [  OK  ]
    [  OK  ]
    Setting up iSCSI targets: iscsiadm: No records found!
    [  OK  ]
    [root@rac1 ~]#
    Moreover, tried to discover the targets, unfortunately no message is getting displayed after execution of this below command.
    [root@rac1 ~]# iscsiadm -m discovery -t sendtargets -p 192.168.37.200
    [root@rac1 ~]#
    The quick response will be appreciated as my whole test case is down as of now due storage issues.
    Thanks,
    Arch.

    Are you running a firewall that needs to be adjusted to support your changed Openfiler IP network?

  • Authorization issue while executing F110 tcode

    Dear All,
    User is facing the proble while executing the tcode F110, user wants to change some payments, but does'nt have change option(pencil mark button is not appearing).
    according to su53 screen shot analysis, fdkuser tcode is missing. this fdkuser is asssociated with all critical obects.
    Kindly do the neeful.
    Thanks & Regards,
    Ganesh.

    >
    Jurjen Heeck wrote:
    > > Recommendation is to do it in dev as it slows down the system performance.
    >
    > If you have production data in your DEV system, which is hardly ever the case, you can do that. I'd do it either in an up to date testsytem or in production. Running a trace on one user and only for authorization checks will not be too big a performance issue as long as you remember to stop the trace after the analysis is finished.
    I agree.  If a trace causes perceptible system performance degradation then it is undersized and likely to come to a standstill during financial closing etc.

  • Issue while executing F.05

    Hi
    While executing F.05(Foreign currency valuation), it is asking for Profit center for certain accounts. Pls. let me know the reason.
    Rgds
    Ravi

    Hi Ravi,
    May be those GL Accounts have a compulsory input for the field profit center. Cehck the Field status group for those GL accounts, the profit center field might be required,
    Hope this helps. assign points if helpful
    regards,
    radhika

  • Database Alert Macros issue while executing the macros in Background

    Hi All,
    I am facing some problems while executing the Database alert macros in Background/Process Chain.
    There are two macros for which the problem exists.
    1.Excess Projected Inventory above Max
    The logic here is, the alert should work for Only Fixed Lot size Procedure.
    If the Stock on hand (projected EA) > (Safety Stock (EA) + Full SOQ (EA)) then alert = "Projected inventory is XX% above MAX".
    XX is the Percent above Max. 
    Note: SOQ => fixed lot size.
    2.Excess Actual Days of Supply
    The Logic here is, the alert should work for all Lot size Procedures except for "Fixed lot size".
    Actual Days Supply >=180 days. (current -> future buckets)
    -  For every receipt cell check the Actual Days Supply - if >= 180 days.
    The macros are working perfectly as expected.

    Hi Abhi,
    Hope you are doing good.
    Yes exactly, the macros are working in foreground/Interactively but not in the Background via Process chain. Let me send the details again.
    Issue :
    I am facing some problems while executing the Database alert macros in Background/Process Chain.
    There are two macros for which the problem exists.
    1.Excess Projected Inventory above Max
    The logic here is, the alert should work for Only Fixed Lot size Procedure. But in Background the alerts are getting created for Lot for Lot and other Planning procedures..
    If the Stock on hand (projected EA) > (Safety Stock (EA) + Full SOQ (EA)) then alert = "Projected inventory is XX% above MAX".
    XX is the Percent above Max. 
    Note: SOQ => fixed lot size.
    2.Excess Actual Days of Supply
    The Logic here is, the alert should work for all Lot size Procedures except for "Fixed lot size". But in Background the alerts are getting created for the Fixed Lot size procedures too..
    Actual Days Supply >=180 days. (current -> future buckets)
    -  For every receipt cell check the Actual Days Supply - if >= 180 days.
    The macros are working perfectly as expected in Foreground/Interactively but the samething is not happening while executing the macro in Background/Process Chain.
    I have tried running these macros in different sequences(Default/Start/Macro) but couldn't able to resolve the issue.
    Thanks in Advance,
    Jay.

  • Issue while executing OS script from Oracle

    I am trying to execute the scripts provided at :
    http://github.com/xtender/XT_SHELL
    provided by xtender user.
    As required, I have asked my DBAs to grant privileges by executing the following scripts:
    Begin
      --change to needed permissions and execute
      dbms_java.grant_permission( 'ODS', 'SYS:java.io.FilePermission', '/var/factiva/ODS/bin/CVIM_Rpt_ExportCSVFile’, 'read,write,execute' );
    end;
    /where CVIM_Rpt_ExportCSVFile is my script residing in the Unix server where my Oracle is installed.
    The error I am facing when I try to execute the following command is:
    select * from table(xt_shell.shell_exec('/var/scripts/CVIM_Rpt_ExportCSVFile',100))
    Exception:the Permission (java.io.FilePermission /var/scripts/CVIM_Rpt_ExportCSVFile execute) has not been granted to ODS. The PL/SQL to grant this is dbms_java.grant_permission( 'ODS', 'SYS:java.io.FilePermission', '/var/scripts/CVIM_Rpt_ExportCSVFile', 'execute' )I have asked my DBA to also execute the following scripts: - But I still see the same error as above. I am not able to figure out whats going on. Can anyone pls help me out??
    EXEC Dbms_Java.Grant_Permission('ODS', 'SYS:java.lang.RuntimePermission', 'writeFileDescriptor', '');
    EXEC Dbms_Java.Grant_Permission(ODS', 'SYS:java.lang.RuntimePermission', 'readFileDescriptor', '');
    dbms_java.grant_permission( 'ODS', 'SYS:java.io.FilePermission', '/var/scripts/CVIM_Rpt_ExportCSVFile', 'execute' )

    DUPLICATE
    =============================================================
    Issue with Executing OS commands from Stored Procedure
    ============================================================

  • Issues while executing background job programatically

    HI All,
    My Selction screen has a push button(BG) and the standard F8(Execute) button
    1. If the user click the f8 button i.e sy-ucomm = ONLI , the report should run in foreground mode
    2. If the user click the push button button  BGi.e sy-ucomm = FC01 , the report should run in background mode
        and create file in sharepath.( i have used fm JOB_OPEN ,SUBMIT etc for this)
    3. If the user click the F9 button i.e sy-batch = X , the report should run in background mode
        and create file in sharepath
    a)When I click the push button i.e point 2  , then the report executes in online mode only .I dont see any
    jobs in SM37
    Pls help!!!
    -Faiz

    Hi Faizur,
    you have the option to run the job in background for Point 3 right so option 2 is not required.
    if a job is scheduled to run in background, then SY-BATCH will be 'X' and the program will run in the back ground.
    In your case the program will be executed in the foreground.
    Hope this details will help you. if not please let me know the exact point 2 & 3 requirements.
    Regards,
    Phani

  • Facing issues while executing LDAPBind command in Unix

    Dear All,
    We are trying to invoke a shell script from PeopleCode(which is having the ldapbind command) through exec command. We are able to invoke the shell script but the ldapbind command fails to execute. It throws the below error
    +"/usr/bin/ldapbind: error while loading shared libraries: libclntsh.so.10.1: wrong ELF class: ELFCLASS32"+
    Not sure whether this is an issue with the installation or configuration. Kindly help us to resolve this issue.
    however when we executed this script in unix server directly, its running successfully.
    When I have tried to invoke the shell script from PeopleCode using WinExec command, got the below error from PeopleSoft itself
    +"Function '%1' cannot be run on the application server. (2,164)+
    +A PeopleCode program that is running as part of a processing group on the application server is using a PeopleCode built-in function that is not allowed on the application server."+
    Kindly help us to understand what is missing here.
    Thanks,
    Hari.A

    Still no clue to fix this issue.
    we are able to invoke the script from PeopleCode which has the LDAPBind command. We are writing the log files after invoking this script.
    We are able to see those log files getting generated also. But it's not capturing the result of LDAPBind and looks like ldapbind command is skipped from execution.
    Please help us to understand where we are missing?
    Thanks,
    Hari.A

  • Global Enqueue Services Deadlock detected while executing job

    Hi Gurus,
    Need your help in analying below situation.
    I got a Global Enqueue Services Deadlock in our 2-node RAC stating deadlock detected due to auto execute of job. But when I checked job status its was executed successfully. Also, the trace files gives some session id , client id which I am not able to mapped to any particular instance. trace files output as below. What would be the approach for such situtation and how to find the relevant sql which caused such deadlocks.
    ENV - 11gR2 RAC 2-node with ASM
    Linux RHEL 6.2
    Trace File output
    Trace file /diag/app/ora11g/diag/rdbms/remcorp/REMCORP1/trace/REMCORP1_j001_25571.trc
    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    With the Real Application Clusters and Automatic Storage Management options
    ORACLE_HOME = /u01/app/ora11g/product/11.2.0/db_1
    System name: Linux
    Node name: remedy-ebu-db1
    Release: 2.6.32-220.el6.x86_64
    Version: #1 SMP Wed Nov 9 08:03:13 EST 2011
    Machine: x86_64
    Instance name: REMCORP1
    Redo thread mounted by this instance: 1
    Oracle process number: 38
    Unix process pid: 25571, image: oracle@remedy-ebu-db1 (J001)
    *** 2013-05-17 02:00:34.174
    *** SESSION ID:(1785.23421) 2013-05-17 02:00:34.174
    *** CLIENT ID:() 2013-05-17 02:00:34.174
    *** SERVICE NAME:(SYS$USERS) 2013-05-17 02:00:34.174
    *** MODULE NAME:() 2013-05-17 02:00:34.174
    *** ACTION NAME:() 2013-05-17 02:00:34.174
    ORA-12012: error on auto execute of job 83
    ORA-00060: deadlock detected while waiting for resource
    ORA-06512: at "ARADMIN.CMS_CUSTOMER_DETAILS", line 3
    ORA-06512: at line 1
    Regards,
    Nikhil Mehta.

    Look at your alert.log, search for messages such as this:
    Wed Jun 16 15:05:58 2010
    Global Enqueue Services Deadlock detected. More info in fileSearch for the .trc file mentioned and opened it, it should have all the info you need.
    Even on the error you posted, you already have some very important information:
    ORA-06512: at "ARADMIN.CMS_CUSTOMER_DETAILS", line 3In short, you have another job, or a query that runs at the same time as your job which wants to do some DML on rows of that table and at the same time your Job wants to do some DML on another set of rows tha table the query has locked first.
    As in:
    a) Query/Job X Locks some rows of ARADMIN.CMS_CUSTOMER_DETAILS.
    b) Your job locks some rows of ARADMIN.CMS_CUSTOMER_DETAILS.
    c) Your job wants the lock on the rows that X has locked first.
    d) X wants the lock on the rows your job has locked first.
    e) Deadlock.
    So if I have something you want, and you have something I want, we are both "deadlocked" thus LMD comes in and kill one of us to resolve the impass. It's probably killing the X job/query and so that's why your job is still executing successfully.
    So you have two options:
    1) Identify the X Job/Query -- either stop it or change it's execution time
    2) Your job - either stop it or change it's execution time

  • Issue while posting billing doc to account

    Hi All,
    There is an inssue with an inbound idoc, actually when an inbound idoc is recieved, sales order is created automatically, but while posting the billing document to account it shows an error, pricing error in item, and when we check the the data in idoc we are getting it selects the wrong Relational owener id which are not maintained, so  i need to find out in which exit i can the logic for that please help me.
    The error is not consistent , sometime it works and sometime does not.
    see the below
    ''When we change this Relational Owner from ‘F’ to ‘J’, they are able to posting their accounts. I want to know from where this ‘F’ is getting populated because we didn’t maintain ‘F’ anywhere. Need to know from where –F is getting populated in the sales order''.
    Thanks
    Ik

    Hello Khan ,
    You need to solve this issue on your own by debugging. I suggest you to set a watch point on the filed i,e variable-name = '-F' to know how it is being populated.
    Thanks

  • Business Rule calc manager issue while executing through Planning Smartview

    Hi,
    I am working on Hyperion Planning 11.1.2 and I have created few business rule in Calc manager. When user is opening it through Hyperion Planning webforms its working fine.
    I have attached the rules on webform and they run on Save and use member on data form and Hide prompts.
    All these properties are checked. So user enter the number on Planning webform and hit on save rule will cruch on the POV members.
    Please help me on below 2 issues:
    1.When user is using the Smartview Planning and opening webform in Smartview while exceuting the rule its throwing error. Can't run the rule.
    What is the exact provsiong I need to give so that they can execute it from the Hyperion Smartview Planning also.
    Currently HBRAPP is Interactive user
    and Application level is Interactive user and Essbase write access
    If I am giving Administrator access they are bale to run the rule, I can't give Administartor acess.
    2.While running rule even with admin access its not taking the POV, its taking the default mebers which I have given while creating the variables.
    However from Planning web it takes the POV selection of webform,
    Please suggest why the same thing is not happening from Hyperion Smartview.
    Thanks in advance
    Pankaj

    Please advise on this issue. Any help would be highly appreciated.

Maybe you are looking for

  • Mapping tools ?

    Hi, Most of my flows are <b>"IDoc -> file" or "file -> Idoc"</b>, and I need to manage several transcodification tables for different countries (I prefer a DDIC table to FixValue or Value mapping) and with an amount of Business systems (more than 300

  • When open file in firefox where is it stored windows 7

    When I open a file without identifying where to save it (eg- excel sheet), where does it get saved while the app (eg Excel) is launched? I'm using FF 11, w Win 7

  • Calculated keyfigures not defined correctly error when executing query

    Hi Experts, I changed calculations in the calculated keyfigures and saved successfully. when I execute the query in BI7 Bex, I am getting errors like query element not defined correctly in the query. when I look into query in the designer its giving

  • Int[] to XML

    Hi all, i have a problem with the setVariableData-method within a <bpel:exec>-block. Within this block it gives an int[], which is to be stored into the signature element. During the execution of "setVariableData("input","payload","/tns:Vapi01Request

  • How can I create cursors within the cursor?

    How can I create cursors within the cursor? Table1 2001 - 2007 data Account_no Account_eff_dt No_account_holder Num Seq_Num Value1 Value2 Table2_Historical (doesn't have Num as a field) 1990 - 2000 data Account_no Account_eff_dt No_account_holder Seq