Processing for request without data

Hi Experts,
I need to save additional information in my custom table for each request loaded into my infoprovider (cubes und dso).
I thought I can make it with some ABAP in the start routine. It works fine, but not for requests without data. If there is a request without data, start routine is not executed at. all. Do you know a pleace where I can input my processing for request without data records.
thanks
Wojciech

Hi,
I have to save information about the open posting period in R/3 when the request is loaded. I dont want to have this information in the data, becouse I want to have the possibility to delete requests belonging to an posting period.
I don't think, that this information is needed to understand my problem.
Greetings
Wojciech

Similar Messages

  • User Exit for Requested Delivery Date in Sales Order

    Hi
    Which user exit can be used to change Requested Delivery Date in Sales Order.
    Scenario:  Sales Document Type: OR has Lead Time: 7 days.  System always proposes delivery date after 7 days.  We need to change this Lead Time based on plant.
    Thanks in advance for your support.
    Regards
    Uma

    Hello,
      try with USEREXIT_MOVE_FIELD_TO_VBEP or USEREXIT_SAVE_DOCUMENT_PREPARE, of program MV45AFZZ.
    Hope to be useful.
    Best regards,
    Andrea

  • User exit for requested delivery date at SO header

    Hi Experts,
    Trying to find a user exit which can be used to calculate the default requested delivery date in the order header based on the current date and the lead-time in the route.
    By default, In SO header, requested delivery date is system date.
    On based some conditions, i need to add lead time in current date and finally this date should be populated instead of current date in requested delivery date field .
         The RDD( requested delivery date ) determination should happen only for some order types and for some sales organization & Distribution Channel.
    Thanks,
    satendra pateria

    Hi Ravi,
    Thanks  for input.
    I neee one more favour on enhancement for automatically batch determination.
    In SO item level, when one item is given and press Enter automatically Batch getting popualted.
    I need to check Batch Expiry date and if it got expired then need to display a error message.
    As of now  i got one user exit EXIT_SAPMM07M_010.
    And Batch validation should be happened only for some order types and some Sale Org + Distribution
    channel.
    Thanks,
    satendra

  • IDoc programming for Requested Delivery Date - Inbound ORDERS

    Hi Folks,
    I want to manipulate Requested Delivery Date on the Sales Order.
    The Field for Req Del Date is RV45A-KETDAT.
    But this value is stored in VBAK-VDATU.
    When i am trying to modify this value using dxvbak structure, this value is getting populated correctly, but not updating in the table.
    Look at the code snippet below.
    if zedidc-sndprn = '0000902000'.
            IF ze1edk03-iddat = '002'.
              MOVE ze1edk03-datum TO zvbak-vdatu.             " Requested Delivery Date
               zvbak-vdatu = sy-datum + 7.
               BREAK-POINT.
               dxvbak = zvbak.
            ENDIF.
            endif.
    What's wrong here??
    Thanks,
    Matt

    Done

  • For Init without data transfer showing records 0 from 0

    Hi all,
    Iam doing Init without data transfer to ODS. In the ODS manage it is showing 1 from 1 which is correct. This ODS data is automatically updated to a cube. There in the cube manage it is showing 0 from 0. My mappings in update rules also correct , but why it is not giving 1 from 1.
      In the cube manage the status is showing green but in the monitor of cube always it is yellow.
    Help me please
    Ram

    Hi Ram
    If you load data with INIT without data transfer then system shows the defualt record in the monitor.
    If check that record in the PSA then you dont find it and on the cube as well.
    If the load is green with 1 record then extractor working fine.It's not actaully a data reocrd.
    Hope it helps...
    Regards,
    Chama.

  • APD Process for Cube -  ODS data transfer.

    hi,
    Two data sources (cube and ODS) are feeding another ODS. I want to delete the data in Data target (ODS)belongs to that particular infosource for every data load if it comes from the same infosource without using process chain or events. (I want the similar option found in cube). I also want to write some complex functionality (ABAP CODE) in start routine of update rules.
    Bhanu suggested me to use APD Process. Can any one (including BHANU) explain me in detail about APD Process. Please also give me navigations.
    Regards,
    Avneet

    Hi Avneet,
    You can read details about the APD here:
    http://help.sap.com/saphelp_nw04/helpdata/en/49/7e960481916448b20134d471d36a6b/content.htm
    Basically you can get to the APD from transaction RSANWB. Start creating a new process using a query as the source of data. You can provide a transactional ODS as a data target and you also have the opportunity of changing the data using predefined functions, or also ABAP code before loading into the ODS.
    Hope this helps...

  • Custome Process for update the date

    Hello Every one,
    I have a page with the check-box where the user can select a record and update the record by pressing on the button.
    I have three processes, and each of these process update one field ( which is a date field) of the page by pressing on the specific button. here are the three processes:
    declare
    begin
    for i in 1..apex_application.g_f01.count loop
    UPDATE  REC_RET_ADD_RECORD
    SET DATE_ADMIN_APPROVED=:P8_DATE_ADMIN_APPROVED
    WHERE REC_RET_ID = APEX_APPLICATION.G_F01(I);
    end loop;
    commit;
    end;
    Condition: When Admin button pressed (submit)
    The second process:
    declare
    begin
    for i in 1..apex_application.g_f01.count loop
    UPDATE REC_RET_ADD_RECORD
    SET DATE_COMMITTEE_APPROVED=:P8_DATE_COMMITTEE_APPROVED
    WHERE  REC_RET_ID = APEX_APPLICATION.G_F01(I);
    end loop;
    commit;
    end;
    Condition: When Committee button pressed (submit)
    The third process:
    declare
    begin
    for i in 1..apex_application.g_f01.count loop
    UPDATE REC_RET_ADD_RECORD
    SET DATE_OHS_APPROVED=:P8_DATE_OHS_APPROVED
    WHERE  REC_RET_ID = APEX_APPLICATION.G_F01(I);
    end loop;
    commit;
    end;
    Condition: When OHS button pressed (submit)
    Now the problem is, when the user selects the row and selects the date for Admin field and presses the Admin button, the system inserts the date but after that if the user wants to selects the same row and update the OHS date, the system will remove the date for Admin field and inserts the OHS date in OHS field and visa verse.
    I don't know why this is happening. Could you please help me. I appreciate it.

    Here is the report query:
    SELECT  apex_item.checkbox (1,
                               REC_RET_ID,
                               'onchange="spCheckChange(this);"',
                               :f_REC_RET_ID_list,
                              ) checkbox,
    "REC_RET_ID",
    "RET_SCHEDULE_NUM",
    "RET_COST_CENTER",
    "RET_TITLE",
    "RET_TITLE_DESC",
    "RET_PERIOD",
    "DATE_USER_INSERTED",
    "DATE_ADMIN_APPROVED",
    "DATE_COMMITTEE_APPROVED",
    "RC3_FORM_REQUIRE",
    "DATE_OHS_APPROVED",
    "DESTRUCTION_SUSPENDED",
    "DESTRUCTION_SUSPENDED_NOTE",
    "INACTIVE_DATE",
    "INACTIVE_DATE_APPROVED",
    "CREATION_DATE",
    "CREATED_BY",
    "LAST_UPDATE_DATE",
    "LAST_UPDATE_BY"
    from REC_RET_ADD_RECORD

  • How to Search BPM Processes for a Given Date Range through a VC Report

    Hi All,
    We have a VC component build to view the BPM process information. Here we are supposed to provide a Date range option for searching the processes. But the Range search is not working.
    I tried in below ways.
    1. On Action Submit, I set the Occurance_D value as "=DSTR(@DATE_FROM,"M/D/YY")&" - "&DSTR(DADD(@DATE_TO,1,"D"),"M/D/YY")" it is working only if there are processes existing either on DATE_FROM or on DATE_TO, otherwise its not working.
    Like, I have 5 processes triggered on Sep-5-2011, then if i give the Date Range as 9/5/11 - 9/11/11  or 9/1/11 - 9/5/11  it is working. But if I give 9/1/11 - 9/11/11 it is not working.
    I tried this way as well.
    =DSTR(@DATE_FROM,"M/D/YY")&" : "&DSTR(DADD(@DATE_TO,1,"D"),"M/D/YY") . Even this is not working.
    Can some one please help.
    Regards,
    SrinivaS

    Dear SrinivaS,
    The main things you need to consider are:
    - store your date value from the UI in a store
    - the store gets used to submit a filter string in format (MM/DD/YY) to
    BI_START_TIME_D.
    If you follow http://help.sap.com/saphelp_nw72/helpdata/en/81/541300d147
    41b39057c8ab3be61f7a/frameset.htm
    you find that the process data source can be filtered in format  "9/9/11
    - 9/12/11" for field BI_START_TIME_D and BI_END_TIME_D.
    The trick is now at submission time to concatenate the strings
    accordingly and submit to BI_START_TIME_D. Use the following dynamic
    expression
    =DSTR(store@START_DATE_FROM,"MM/DD/YY")&" - "
    &DSTR(store@START_DATE_TO,"MM/DD/YY")
    to format the string during submission. I was able to verify this on my
    machine. I hope that also your locale settings work with this
    implementation.
    Find attached a link to a small sample application [(test_date.zip) |please find attached a small sample application (test_date.zip) which]which shows you the proper usage of a date picker in conjunction with the
    process data source. Please import the zip file into VC and deploy it.
    Best regards,
    Ralf.

  • Process for manual master data change by business directly in BW?

    Hi!
      My business want to have a chance to maintain some of material master data custom attributes directly in BW.
      Does anyone have any experience in this? I.e. how to give business a chance to populate their custom attributes in 0MATERIAL master data table <b>without access to RSA1</b>, and preferably <b>via web</b> interface?
      Will appreciate any ideas
    Thank you!
       Vitaliy

    Ashwin,
    I just went through the post by Vitaliy where he also metions about certain custom attributes being populated by the users , this should not have any issue only thing is that the activation of the master data should be triggerred automatically so that old data is not entered. I am not sure if this would b required when we are directly editing the table. There will be a version flag against each entry so I guess activation would be required.
    1. Only issue with a flat file is that someone has to enter all the required data , atleast the key attributes in the necessary format and then put it up for uploading which might become an overhead , otherwise flat files would work fine. Everytime there is a chage required , the busines user has to initiate the change and then save it and then give the details to BASIS / Uploader to upload the new files.
    Or since it is NW2004s , a simple function module may be written and the same could b called as a web service and the data could then be uploaded trough the web if required. Also people are prone to errors and if the flat file contains small characters etc and then the load fails , the overhead would increase. Delta loads would not be affected since going by te problem statement , the fiels to be changed do not come from the source and hence can be updated in BW itself.
    2. Since we are looking at data at the table level , editing the attributes should not be an issue , only thing is that the validation of the same will have to be done carefully.
    My 0.02
    Arun

  • Message sent as iMessage instead of text for iPhone without data

    My iPhone does not have data. When I am in a wifi zone iMessage works and texts are received. When I am not in wifi, anyone who sends me a text from an iPhone using iMessage does not come through. Is there a setting where iMessages get automatically changed to text messages when receiving messages

    Hey there lg2222,
    It sounds like you are not getting iMessages from other people when not connected to Wi-Fi. I would first do these steps, if you have not already:
    The first step to resolving an issue with iMessage is to update your iOS software and your carrier settings to the latest versions. If iMessage still has an issue, follow the steps below for your issue.
    Then use these troubleshooting steps to help isolate and resolve the issue:
    To resolve issues with sending and receiving iMessages, follow these steps
    Check iMessage system status for current service issues.
    Go to Settings > Messages > Send & Receive and make sure that you registered iMessage with your phone number or Apple ID and that you selected iMessage for use. If the phone number or Apple ID isn't available for use, troubleshoot iMessage registration.
    Open Safari and navigate to www.apple.com to verify data connectivity. If a data connection isn't available, troubleshoot cellular data or a Wi-Fi connection.
    iMessage over cellular data might not be available while you're on a call. Only 3G and faster GSM networks support simultaneous data and voice calls. Learn which network your phone supports. If your network doesn't support simultaneous data and voice calls, go to Settings > Wi-Fi and turn Wi-Fi on to use iMessage while you're on a call.
    Restart your device.
    Tap Settings > General > Reset > Reset Network Settings on your iPhone.
    If you still can't send or receive an iMessage, follow these steps
    Make sure that the contact trying to message you isn't blocked in Settings > Messages > Blocked.
    Make sure that the contact you're trying to send a message to is registered with iMessage.
    If the issue occurs with a specific contact or contacts, back up or forward important messages and delete your current messaging threads with the contact. Create a new message to the contact and try again.
    If the issue occurs with a specific contact or contacts, delete and recreate the contact in the Contacts app. Create a new message to the newly created contact and try again.
    Back up and restore your device as new.
    iOS: Troubleshooting Messages
    http://support.apple.com/kb/ts2755
    Thank you for using Apple Support Communities.
    All the best,
    Sterling

  • Extracting data with zero values for periods without data

    Hello Together,
    i extracted data from our hfm application from period 1 to 3.
    Now i found that some rows begin with period 2 or 3 because there are no data in period 1 or 2.
    So my question is, how i can get zero values for periods with no data.
    Hope someone can help me.
    Many thanks in advance.
    Martin
    P.S.: Our actual hfm version is 11.1.1.3
    edit

    For the periods with no data, HFM does not have a "0" to offer for the data extraction. Since the default data extract from HFM has each period on it's own row in the *.dat file, I don't understand your comment about rows starting with period 2 or 3. In the *.dat file the row for period 1 simply won't exist. Are you using a custom approach/tool for data extraction?
    The only time HFM will offer a "0" where there is indeed no data, is if you extract derived data. You must include calculated data, and even then I believe HFM will only extract a "0" for the first period after a period where there was data, and only for flow accounts (Revenue/Expense). so if you have "100" in period 1, and no data in period 2, such that the derived value YTD for period 2 is "0", then you must include calculated values in the extract and you should see "0" for period 2. However, I don't believe HFM will extract "0" for period 3 - instead it will be blank/missing.
    In general it could be very dangerous to force HFM to give zeros where there is no data.
    --Chris                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Is there any process for the intializing the deltas for the purchasing da

    Hi,
    I need how can we intialize the delta process for the purcahsing data. that is 2LIS_02_SCL and 2LIS_02_ITM data sources.
    Please help me out this issue.
    Points will be awarded.
    Thanks in advance.

    HI
    Go to Transaction LBWE (LO Customizing Cockpit)
    1). Purchase Logistics Application
    Purchase BW
    Extract Structures
    2). Select the desired Extract Structure and deactivate it first.
    3). Give the Transport Request number and continue
    4). Click on `Maintenance' to maintain such Extract Structure
    Select the fields of your choice and continue
    Maintain DataSource if needed
    5). Activate the extract structure
    6). Give the Transport Request number and continue
    Next step is to Delete the setup tables
    7). Go to T-Code SBIW
    8). Select Business Information Warehouse
    i. Setting for Application-Specific Datasources
    ii. Logistics
    iii. Managing Extract Structures
    iv. Initialization
    v. Delete the content of Setup tables (T-Code LBWG)
    vi. Select the application (01 u2013 Sales & Distribution) and Execute
    Now, Fill the Setup tables
    9). Select Business Information Warehouse
    i. Setting for Application-Specific Datasources
    ii. Logistics
    iii. Managing Extract Structures
    iv. Initialization
    v. Filling the Setup tables
    vi. Application-Specific Setup of statistical data
    vii. u2013 Perform Setup (T-Code OLI*BW)
    Specify a Run Name and time and Date (put future date)
    Execute
    Hope it helps
    Check the data in Setup tables at RSA3

  • Sending any non-POST-type request with data to CFC

    In CF 11 (Developer Edition), non-POST-type requests with data to CFC files seem to get stuck in ColdFusion. I don't believe I've changed anything in CF administration that could affect this, and as far as I can tell I haven't done anything to IIS that would break it either. The issue occurs with both of the CF applications that I'm working on.
    Requests to CFMs that contain data work using any of the CRUD methods (GET, POST, PUT, DELETE), and the IIS handlers are setup to accept all methods for both CFMs and CFCs.
    Can anyone else verify whether this issue with requests to CFCs exists in their environment?
    Example curl requests:
    # Requests to CFC with data
    curl -d 'test=123' -X 'GET' 'http://localhost/myapplication/component.cfc?method=test' # NO RESPONSE (TIMEOUT)
    curl -d 'test=123' -X 'PUT' 'http://localhost/myapplication/component.cfc?method=test' # NO RESPONSE (TIMEOUT)
    curl -d 'test=123' -X 'DELETE' 'http://localhost/myapplication/component.cfc?method=test' # NO RESPONSE (TIMEOUT)
    curl -d 'test=123' -X 'POST' 'http://localhost/myapplication/component.cfc?method=test' # Works fine
    # Requests to CFM with data
    curl -d 'test=123' -X 'GET' 'http://localhost/myapplication/component.cfm' # Works fine
    curl -d 'test=123' -X 'PUT' 'http://localhost/myapplication/component.cfm' # Works fine
    curl -d 'test=123' -X 'DELETE' 'http://localhost/myapplication/component.cfm' # Works fine
    curl -d 'test=123' -X 'POST' 'http://localhost/myapplication/component.cfm' # Works fine
    # Requests without data
    curl -X 'GET' 'http://localhost/myapplication/component.cfc?method=test' # Works fine
    curl -X 'PUT' 'http://localhost/myapplication/component.cfc?method=test' # Works fine
    curl -X 'DELETE' 'http://localhost/myapplication/component.cfc?method=test' # Works fine
    curl -X 'POST' 'http://localhost/myapplication/component.cfc?method=test' # Works fine

    mike124897 wrote:
    In CF 11 (Developer Edition), non-POST-type requests with data to CFC files seem to get stuck in ColdFusion. I don't believe I've changed anything in CF administration that could affect this, and as far as I can tell I haven't done anything to IIS that would break it either. The issue occurs with both of the CF applications that I'm working on.
    Requests to CFMs that contain data work using any of the CRUD methods (GET, POST, PUT, DELETE), and the IIS handlers are setup to accept all methods for both CFMs and CFCs.
    Can anyone else verify whether this issue with requests to CFCs exists in their environment?
    Example curl requests:
    # Requests to CFC with data 
    curl -d 'test=123' -X 'GET' 'http://localhost/myapplication/component.cfc?method=test' # NO RESPONSE (TIMEOUT) 
    curl -d 'test=123' -X 'PUT' 'http://localhost/myapplication/component.cfc?method=test' # NO RESPONSE (TIMEOUT) 
    curl -d 'test=123' -X 'DELETE' 'http://localhost/myapplication/component.cfc?method=test' # NO RESPONSE (TIMEOUT) 
    curl -d 'test=123' -X 'POST' 'http://localhost/myapplication/component.cfc?method=test' # Works fine 
    You complicate things with too many flags. You could just do something like
    Get
    curl "http://localhost/myapplication/component.cfc?method=test&myArg=123"
    Post
    curl --data "myData=someData" "http://localhost/myapplication/component.cfc?method=test&myArg=123"

  • Taking export/import of full database without data

    What would be the parameters to take expoert/import for DB without Data?

    i did ignore=y but still import is ending like this.
    IMP-00017: following statement failed with ORACLE error 1917:
    "GRANT CREATE INDEXTYPE TO "EBS_XE_REPO4""
    IMP-00003: ORACLE error 1917 encountered
    ORA-01917: user or role 'EBS_XE_REPO4' does not exist
    IMP-00017: following statement failed with ORACLE error 1917:
    "GRANT CREATE OPERATOR TO "EBS_XE_REPO4""
    IMP-00003: ORACLE error 1917 encountered
    ORA-01917: user or role 'EBS_XE_REPO4' does not exist
    IMP-00017: following statement failed with ORACLE error 1917:
    "GRANT CREATE PROCEDURE TO "EBS_XE_REPO4""
    IMP-00003: ORACLE error 1917 encountered
    ORA-01917: user or role 'EBS_XE_REPO4' does not exist
    IMP-00017: following statement failed with ORACLE error 1917:
    "GRANT CREATE SEQUENCE TO "EBS_XE_REPO4""
    IMP-00003: ORACLE error 1917 encountered
    ORA-01917: user or role 'EBS_XE_REPO4' does not exist
    IMP-00017: following statement failed with ORACLE error 1917:
    "GRANT CREATE SESSION TO "EBS_XE_REPO4""
    IMP-00003: ORACLE error 1917 encountered
    ORA-01917: user or role 'EBS_XE_REPO4' does not exist
    IMP-00017: following statement failed with ORACLE error 1917:
    "GRANT CREATE TABLE TO "EBS_XE_REPO4""
    IMP-00003: ORACLE error 1917 encountered
    ORA-01917: user or role 'EBS_XE_REPO4' does not exist
    IMP-00017: following statement failed with ORACLE error 1917:
    "GRANT CREATE TRIGGER TO "EBS_XE_REPO4""
    IMP-00003: ORACLE error 1917 encountered
    ORA-01917: user or role 'EBS_XE_REPO4' does not exist
    IMP-00017: following statement failed with ORACLE error 1917:
    "GRANT CREATE TYPE TO "EBS_XE_REPO4""
    IMP-00003: ORACLE error 1917 encountered
    ORA-01917: user or role 'EBS_XE_REPO4' does not exist
    IMP-00017: following statement failed with ORACLE error 1917:
    "GRANT CREATE SESSION TO "EBS_XE_REPO_USER""
    IMP-00003: ORACLE error 1917 encountered
    ORA-01917: user or role 'EBS_XE_REPO_USER' does not exist
    IMP-00017: following statement failed with ORACLE error 1917:
    "GRANT CREATE ANY TYPE TO "EBS_XE_REPO5""
    IMP-00003: ORACLE error 1917 encountered
    ORA-01917: user or role 'EBS_XE_REPO5' does not exist
    IMP-00017: following statement failed with ORACLE error 1917:
    "GRANT CREATE ANY TYPE TO "EBS_XE_REPO6""
    IMP-00003: ORACLE error 1917 encountered
    ORA-01917: user or role 'EBS_XE_REPO6' does not exist
    IMP-00017: following statement failed with ORACLE error 1917:
    "GRANT UNLIMITED TABLESPACE TO "EBS_XE_REPO5""
    IMP-00003: ORACLE error 1917 encountered
    ORA-01917: user or role 'EBS_XE_REPO5' does not exist
    IMP-00017: following statement failed with ORACLE error 1917:
    "GRANT UNLIMITED TABLESPACE TO "EBS_XE_REPO6""
    IMP-00003: ORACLE error 1917 encountered
    ORA-01917: user or role 'EBS_XE_REPO6' does not exist
    IMP-00017: following statement failed with ORACLE error 1917:
    "GRANT CREATE PROCEDURE TO "EBS_XE_REPO2""
    IMP-00003: ORACLE error 1917 encountered
    ORA-01917: user or role 'EBS_XE_REPO2' does not exist
    IMP-00017: following statement failed with ORACLE error 1917:
    "GRANT CREATE TYPE TO "EBS_XE_REPO2""
    IMP-00003: ORACLE error 1917 encountered
    ORA-01917: user or role 'EBS_XE_REPO2' does not exist
    IMP-00017: following statement failed with ORACLE error 1917:
    "GRANT ALTER SYSTEM TO "EBS_XE_REPO2""
    IMP-00003: ORACLE error 1917 encountered
    ORA-01917: user or role 'EBS_XE_REPO2' does not exist
    IMP-00017: following statement failed with ORACLE error 1917:
    "GRANT CREATE CLUSTER TO "EBS_XE_REPO2""
    IMP-00003: ORACLE error 1917 encountered
    ORA-01917: user or role 'EBS_XE_REPO2' does not exist
    IMP-00017: following statement failed with ORACLE error 1917:
    "GRANT CREATE INDEXTYPE TO "EBS_XE_REPO2""
    IMP-00003: ORACLE error 1917 encountered
    ORA-01917: user or role 'EBS_XE_REPO2' does not exist
    IMP-00017: following statement failed with ORACLE error 1917:
    "GRANT CREATE OPERATOR TO "EBS_XE_REPO2""
    IMP-00003: ORACLE error 1917 encountered
    ORA-01917: user or role 'EBS_XE_REPO2' does not exist
    IMP-00017: following statement failed with ORACLE error 1917:
    "GRANT CREATE SEQUENCE TO "EBS_XE_REPO2""
    IMP-00003: ORACLE error 1917 encountered
    ORA-01917: user or role 'EBS_XE_REPO2' does not exist
    IMP-00017: following statement failed with ORACLE error 1917:
    "GRANT CREATE TABLE TO "EBS_XE_REPO2""
    IMP-00003: ORACLE error 1917 encountered
    ORA-01917: user or role 'EBS_XE_REPO2' does not exist
    IMP-00017: following statement failed with ORACLE error 1917:
    "GRANT CREATE TRIGGER TO "EBS_XE_REPO2""
    IMP-00003: ORACLE error 1917 encountered
    ORA-01917: user or role 'EBS_XE_REPO2' does not exist
    IMP-00017: following statement failed with ORACLE error 1917:
    "GRANT "CONNECT" TO "EBS_XE_REPO""
    IMP-00003: ORACLE error 1917 encountered
    ORA-01917: user or role 'EBS_XE_REPO' does not exist
    IMP-00017: following statement failed with ORACLE error 1917:
    "GRANT "CONNECT" TO "EBS_XE_REPO2""
    IMP-00003: ORACLE error 1917 encountered
    ORA-01917: user or role 'EBS_XE_REPO2' does not exist
    IMP-00017: following statement failed with ORACLE error 1917:
    "GRANT "CONNECT" TO "EBS_XE_REPO_ALR""
    IMP-00003: ORACLE error 1917 encountered
    ORA-01917: user or role 'EBS_XE_REPO_ALR' does not exist
    IMP-00017: following statement failed with ORACLE error 1917:
    "GRANT "CONNECT" TO "EBS_XE_REPO4""
    IMP-00003: ORACLE error 1917 encountered
    ORA-01917: user or role 'EBS_XE_REPO4' does not exist
    IMP-00017: following statement failed with ORACLE error 1917:
    "GRANT "CONNECT" TO "EBS_XE_REPO6""
    IMP-00003: ORACLE error 1917 encountered
    ORA-01917: user or role 'EBS_XE_REPO6' does not exist
    IMP-00017: following statement failed with ORACLE error 1917:
    "GRANT "CONNECT" TO "EBS_XE_REPO5""
    IMP-00003: ORACLE error 1917 encountered
    ORA-01917: user or role 'EBS_XE_REPO5' does not exist
    IMP-00017: following statement failed with ORACLE error 1917:
    "GRANT "RESOURCE" TO "EBS_XE_REPO5""
    IMP-00003: ORACLE error 1917 encountered
    ORA-01917: user or role 'EBS_XE_REPO5' does not exist
    IMP-00017: following statement failed with ORACLE error 1917:
    "GRANT "RESOURCE" TO "EBS_XE_REPO6""
    IMP-00003: ORACLE error 1917 encountered
    ORA-01917: user or role 'EBS_XE_REPO6' does not exist
    IMP-00017: following statement failed with ORACLE error 1918:
    "ALTER USER "EBS_XE_REPO" DEFAULT ROLE ALL"
    IMP-00003: ORACLE error 1918 encountered
    ORA-01918: user 'EBS_XE_REPO' does not exist
    IMP-00017: following statement failed with ORACLE error 1918:
    "ALTER USER "EBS_XE_REPO2" DEFAULT ROLE ALL"
    IMP-00003: ORACLE error 1918 encountered
    ORA-01918: user 'EBS_XE_REPO2' does not exist
    IMP-00017: following statement failed with ORACLE error 1918:
    "ALTER USER "EBS_XE_REPO_ALR" DEFAULT ROLE ALL"
    IMP-00003: ORACLE error 1918 encountered
    ORA-01918: user 'EBS_XE_REPO_ALR' does not exist
    IMP-00017: following statement failed with ORACLE error 1918:
    "ALTER USER "EBS_XE_REPO5" DEFAULT ROLE ALL"
    IMP-00003: ORACLE error 1918 encountered
    ORA-01918: user 'EBS_XE_REPO5' does not exist
    IMP-00017: following statement failed with ORACLE error 1918:
    "ALTER USER "EBS_XE_REPO6" DEFAULT ROLE ALL"
    IMP-00003: ORACLE error 1918 encountered
    ORA-01918: user 'EBS_XE_REPO6' does not exist
    IMP-00017: following statement failed with ORACLE error 1918:
    "ALTER USER "EBS_XE_REPO_USER" DEFAULT ROLE ALL"
    IMP-00003: ORACLE error 1918 encountered
    ORA-01918: user 'EBS_XE_REPO_USER' does not exist
    IMP-00017: following statement failed with ORACLE error 1918:
    "ALTER USER "EBS_XE_REPO4" DEFAULT ROLE ALL"
    IMP-00003: ORACLE error 1918 encountered
    ORA-01918: user 'EBS_XE_REPO4' does not exist
    IMP-00017: following statement failed with ORACLE error 1918:
    "ALTER USER "EBS_XE_REPO" QUOTA UNLIMITED ON "EBS_XE_REPO_INDX" QUOTA UNLIMI"
    "TED ON "EBS_XE_REPO_DATA""
    IMP-00003: ORACLE error 1918 encountered
    ORA-01918: user 'EBS_XE_REPO' does not exist
    IMP-00017: following statement failed with ORACLE error 1918:
    "ALTER USER "EBS_XE_REPO2" QUOTA UNLIMITED ON "EBS_XE_REPO2_INDX" QUOTA UNLI"
    "MITED ON "EBS_XE_REPO2_DATA""
    IMP-00003: ORACLE error 1918 encountered
    ORA-01918: user 'EBS_XE_REPO2' does not exist
    IMP-00017: following statement failed with ORACLE error 1918:
    "ALTER USER "EBS_XE_REPO_ALR" QUOTA UNLIMITED ON "EBS_XE_REPO_ALR_INDX" QUOT"
    "A UNLIMITED ON "EBS_XE_REPO_ALR_DATA""
    IMP-00003: ORACLE error 1918 encountered
    ORA-01918: user 'EBS_XE_REPO_ALR' does not exist
    IMP-00017: following statement failed with ORACLE error 1918:
    "ALTER USER "EBS_XE_REPO4" QUOTA UNLIMITED ON "EBS_XE_REPO4_INDX" QUOTA UNLI"
    "MITED ON "EBS_XE_REPO4_DATA""
    IMP-00003: ORACLE error 1918 encountered
    ORA-01918: user 'EBS_XE_REPO4' does not exist
    IMP-00017: following statement failed with ORACLE error 959:
    "ALTER USER "EBSJM" QUOTA UNLIMITED ON "EBSJM_INDEX" QUOTA UNLIMITED ON "EBS"
    "JM_DATA""
    IMP-00003: ORACLE error 959 encountered
    ORA-00959: tablespace 'EBSJM_INDEX' does not exist
    IMP-00017: following statement failed with ORACLE error 1918:
    "ALTER USER "EBS_XE_REPO6" QUOTA UNLIMITED ON "EBS_XE_REPO6_INDX" QUOTA UNLI"
    "MITED ON "EBS_XE_REPO6_DATA""
    IMP-00003: ORACLE error 1918 encountered
    ORA-01918: user 'EBS_XE_REPO6' does not exist
    IMP-00017: following statement failed with ORACLE error 1918:
    "ALTER USER "EBS_XE_REPO5" QUOTA UNLIMITED ON "EBS_XE_REPO5_INDX" QUOTA UNLI"
    "MITED ON "EBS_XE_REPO5_DATA""
    IMP-00003: ORACLE error 1918 encountered
    ORA-01918: user 'EBS_XE_REPO5' does not exist
    . importing EBS_ADMIN's objects into EBS_ADMIN
    . importing EBS_XE_REPO's objects into EBS_XE_REPO
    IMP-00003: ORACLE error 1435 encountered
    ORA-01435: user does not exist
    . importing EBS_XE_REPO2's objects into EBS_XE_REPO2
    IMP-00003: ORACLE error 1435 encountered
    ORA-01435: user does not exist
    . importing EBS_XE_REPO_ALR's objects into EBS_XE_REPO_ALR
    IMP-00003: ORACLE error 1435 encountered
    ORA-01435: user does not exist
    . importing EBS_DWH's objects into EBS_DWH
    . importing EBS_XE_REPO4's objects into EBS_XE_REPO4
    IMP-00003: ORACLE error 1435 encountered
    ORA-01435: user does not exist
    . importing PERFSTAT's objects into PERFSTAT
    . importing EBS_XE_REPO6's objects into EBS_XE_REPO6
    IMP-00003: ORACLE error 1435 encountered
    ORA-01435: user does not exist
    . importing EBS_XE_REPO5's objects into EBS_XE_REPO5
    IMP-00003: ORACLE error 1435 encountered
    ORA-01435: user does not exist
    . importing SYSTEM's objects into SYSTEM
    . importing WMSYS's objects into WMSYS
    . importing TOAD's objects into TOAD
    . importing EBS_REPO's objects into EBS_REPO
    . importing EBS_STAGE's objects into EBS_STAGE
    . importing EBS_XE_REPO's objects into EBS_XE_REPO
    "ALTER SESSION SET CURRENT_SCHEMA= "EBS_XE_REPO""
    IMP-00003: ORACLE error 1435 encountered
    ORA-01435: user does not exist
    IMP-00000: Import terminated unsuccessfully

  • App-store can't process my request for credit card data validation

    Hi all,
    I bought a macbook and I opened the App Store for downloading a game and test the Nvidia GeForce. But something went wrong with the validation of the account so i'm pretty stucked.
    I updated an old Apple ID, confirmed it with email and checked it onto the apple site. So my apple ID seems to be ok.
    But when I try to log on the App Store ask me to validate the account. After following some steps I arrive in the credit card section and I insert the credit card data the system says:
    "Is not possible to process the request at the moment. please try later."
    I tried yesterday and today about 10 times, but the message still appears. The weird thing is that I got a 2 Euro charge each time I try. So I have about 20 Euro less in my credit card but I can't still access the App Store.
    Anybody can help with this issues?
    Thanks

    Make sure your payment method is accepted >  iTunes Store: Accepted forms of payment
    When you type in the credit card account, don't forget to type in the security code. (Even if you aren't purchasing any content).
    it's Apple's way of verifying your account.

Maybe you are looking for

  • Photoshop CS4 file associations (Vista) - fix

    --Only tried on Windows Vista - For those who upgraded from Photoshop CS3 to CS4 and lost the ability to associate Photoshop with specific file extensions (like .jpg) because it didn't show up in the "Openwith" list.  You might want to try this fix:

  • AnyConnect 3.1 - Failed to perform required client update checks

    I upgraded to ASA 9, and asdm 7, everything went perfect except AnyConnect IKEV2 doesnt work anymore, I have a lot of errors under my event viewer: When it goes to install I get this error: Failed to perform required client update checks. Contact you

  • Lost the power adapter.

    Hi, I've lost my power adapter(ultracompact) that came with iphone 3G. However I have an old apple USB power adapter that I used for charging my ipods. When I checked the online apple store I saw that there are two different power adapters. The bigge

  • Request additional allocation of dynamic memory

    Hyper-V 2012 host Server 2012 R2 guest The guest is configured for startup and minimum memory of 2 GB with a maximum memory of 64 GB.  Once per day a PowerShell script runs which uses 7-Zip.exe to compress some large files.  The 7-Zip command fails i

  • Illustrator CC October Update - Moving Images Issue

    Just updated my CC to Oct 14 version and now when I open any file with a linked image and try to move that image, I just get a spinning wheel- I can remove these links from my layers palette but the same thing happens when I place a new image. The on