How to close an open request for a RealTime Cube in a Process Chain ?

Hi,
I've a real-time infocube, let´s call it C1RT. C1RT is connected to another standard Infocube C2 via a DTP.
The users enter the planning data; it's stored  on C1RT. I wan't a process chain that loads data from C1RT to C2.
What I've done yet and doesn't work is:
Process chain PC1:
Start->Change load mode from input ready to load ready for C1RT->Run DTP.
I need to go to C1RT, right click, manage, click on the yellow ligth of the open request, and chage it to green, after this DTP transfers the data succesfully.
I want to automate the yellow to green issue in PC1.
Any ideas ?
Best Regards,
Miguel P.

Hi,
no report necessary.
I had a similar problem lately.
changing the cube in process chain is enough, but there are some settings to be made for the cube.
Look it up at OSS note 1063466 .
regards
Cornelia

Similar Messages

  • How can I delete all loads for a specific infopackage in a process chain?

    Good day all,
    I've got a BW 3.5 system. and I have a cube which is loaded by two infopackages, I will call them "Current" and "History" which load each month.  On an ongoing basis I only want one "Current" infopackage load and many "History" infopackage loads.  At the beginning of a month before I load a new "Current", I would like to delete any loads in my cube that were loaded by "Current".  It's not an overlapping selection request, so the automated delete won't work - so I'm open for suggestions.
    Thanks,   Ken

    In the InfoPackage settings - Data Target tab, use the Automatic loading of similar/identical requests option.
    Instead of deleting "overlapping", you can request selection through the routine using the following tables:
    rsreqdone contains the request numbers and the InfoPackage technical name.
    rsseldone contains request numbers and their selection criteria.
    Use something like this:
    TABLES: rsreqdone, rsseldone.
    DATA:   itab_rsseldone TYPE rsseldone,
            itab_rsreqdone TYPE SORTED TABLE OF rsreqdone WITH NON-UNIQUE
            KEY rnr WITH HEADER LINE,
            v_date TYPE sy-datum.
    *selecting all requests from RSREQDONE that were loading from this infopackage
    select rnr from RSREQDONE into table itab_rsreqdone
    where LOGDPID = 'Current Infopackage Technical Name'.
    loop at itab_rsreqdone.
    *selecting all these requests + selection criteria from RSSELDONE
    select single * from rsseldone into itab_RSSELDONE
    where rnr = itab_rsreqdone-rnr.
    if sy-subrc EQ 0.
    v_date = sy-datum.
    *if the Month Selection criteria is less than the current system month
    *then delete request from target.
    if itab_RSSELDONE-low(6) < v_date(6).
    *all requests remaining in l_t_request_to_delete are deleted from the data target
    l_t_request_to_delete-rnr = itab_rsreqdone-rnr.
    append l_t_request_to_delete.
    ENDIF.
    ENDIF.
    endloop.
    *do not delete the actual request
    DELETE l_t_request_to_delete WHERE
    rnr = l_request.
    clear p_subrc.

  • How to close an open PO of partial GR and release procedure

    Hi friends,
       I would like to know how to close an open PO where partial GR has done on it and release procedure exists for that particular PO.
        I would also like to know if Invoice is not done for a PO and GR is done, then can we call it as open PO?
    Please clarify
    Thanks
    Jyothi

    hi antony..
      thank u antony a lot...i ve tried it and working fine..
      but can we go in me22n to tick delivery complete for a PO which has already been released? it is showing "u cannot make change because it has already been output
    regards,
    jyothi

  • I want to know HOW to CLOSE Multiple Open Apps at ONCE. I keep mistakenly opening lots of things at one time.

    I want to know HOW to CLOSE Multiple Open Apps at ONCE. If I have many apps going at one time and want to stop fast, surely there is a way to hit like(alt-F4 in Windows) and BAM! They all go down. I need a feature like that...

    Alt+F4 in Windows only closes the active program.
    Command+Q does the same thing for Mac. Just keep hitting that key combo untill all are closed.

  • How to close a popup window for system events?

    Hi,
    I have a screen 110 which shows several input field in popup mode.
    The Cancel button can close the screen.
    But my question is how to close the popup window for the following system events?
    1, Customer clicks the cross button in top-right corner
    2, Customer clicks the system icon in top-left corner and then select either: "Close" or "Stop Session"
    The PAI subroutine of the screen has not been triggered for the above system events.
    Thanks for the coming help.
    Best Regards,
    David

    Hi Siddharth,
    I did check with another very experienced ABAP developer.
    The solution was the same as what Arunima Rudra provided.
    And I got a sample program which did work properly.
    The headache is that the system events in my program still cannot be triggered even after I have all the same changes.
    Anyway, I suggest you to try the solution as provided by Arunima Rudra.
    It should work for 2 system events:
    1, Customer clicks the cross button in top-right corner
    2, Customer clicks the system icon in top-left corner and then select either: "Close"
    For "Stop Session", it should not be handled by popup.
    You can observe the same behavior in ALV sorting configuration popup.
    Good luck!
    Regards,
    David

  • How sharepoint understand when user requests for web applications by their DNS names

    HI
    I configured Alternate access mapping in my sharepoint farm for default ,intranet zones
    and spt farm has two web front end servers and they load balancing by F5 device
    in WFE servers there are different web applications are running on different ports
    so here I want to know how load balancing works, load balancing configured in F5 device.
    when users request a webapplication from browser (ex http://cms) where this request will go
    1)when I ping cms and other web applicaations  it returns me a loadbalancer  server IP  for all web applications;
    ping cms : it returns 10.xxx.0.80 , same ip returns when I ping for other web app
    but ex CMS web application run on the 10.xxx.1.26:81 port in sharepoint server
    2) and these sharepoint web applications running on different ports in sharepoint  web servers , so here  how sharepoint understand when user requests for web applications by their DNS names
    http://cms and http://products  etc
    adil

    I'm not sure if the F5 can add a port number (I'm not an expert on load balancers).  But in general if you design the SharePoint site to run on port 81 then you need to have port 81 appended to the request or it won't work.  http://cms in your
    example would take you to http://cms:80 not http://cms:81.  But in general DNS will resolve the address back to the F5 load balancer.  The load balancer will look at the header of the HTTP request (which contains the original address you requested)
    and forward the request to the appropriate web front end IP address.  If your web front end is using one IP address for multiple sites then those sites need to be differntiated by using a custom port like 81 (which must be included in the original request)
    or because a host header was bound to the web application when it was created.  If they are running on different port numbers then the request must include the port number by the time it gets to the SharePoint server.
    Paul Stork SharePoint Server MVP
    Principal Architect: Blue Chip Consulting Group
    Blog: http://dontpapanic.com/blog
    Twitter: Follow @pstork
    Please remember to mark your question as "answered" if this solves your problem.

  • H how to find  if the psa table is included in psa deletion process chain

    Hi all
    can anybody tell me .
    I have a psa table it's technical name is /BIC/B*
    h how to find  the  above psa table is included in psa deletion process chain or not
    please help me

    Hi
    Ope the PC in RSPC1 -->go to planning view of process chain
    in left side you will find different types of process types.
    under other BW process types folder -->you will find process type "Delete request from PSA"
    drag this into your process chain planning view and customize it based on your requirements.
    check the below article for step by step procedure
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/a02ba9e7-bb6f-2c10-09b4-e86b9fcbad41?QuickLink=index&overridelayout=true
    Regards,
    Venkatesh

  • How to delete the open requests in the LBWQ

    Hi guys ... Can any one let me know how to delete / update the open requests in the queue . I need to delete the Open requests in the LBWQ...we are applying patches and for that we need to delete from LBWQ and RSA7...I guess there is an ABAP report which will deletes the open requests...Can any one let me know that report name please
    Thanks in advance...
    regards
    Edited by: sam on Dec 17, 2007 6:15 PM

    If your job control runs fine then best thing is to transfer the records from LBWQ to RSA7 and pull it to BW. If you do this all your delta data is intact and you do not loose any delta data. But if you delete the LBWQ you potentially loose all youre delta data. You can go to LBWE and start the job control and move data to RSA7 and then pull it to BW.
    But i am not very clear why you wish to delete this data ? If you do this then better you reinitialize all your delta data by following your normal procedure of filling up the setup tables and then initalizing in BW.

  • How to get the opening balances for lessthan selected date in cubes.

    Hi All,
    my task is to get the opening balances for the selected date.
    Ex: If I select date say 31-1-2013, I should get the sum of values which are less than the selected date.
    in sql:
    select sum(balance) from banktrans where banktrans.transdate < 31-1-2013;
    BankTable                            BankTrans
    BankId                               BankId
                                            balance
                                            transdate
    BankTable (records):
    SCB
    BankTrans(records):
    a) SCB, 15000, 10-02-2013
    b) SCB, 20000, 31-01-2014
    c) SCB, 50000, 21-09-2012
    If I select date as 31-01-2014, I should get the value as 65000 
    If I select date as 10-02-2013, I should get the value as 50000
    Date will be dynamic selection from years months days hirearchy ( time dimension)
    How can i achieve this?  
    any help is much appreciated.
    Thanks,
    Rakesh

    Dear David,
    I've tried the below with static date but i'm not getting the values which are sum of less than the given date.
    I've given 1st jan 2013 as static date and I need to get the sum of values which are less than the 1st jan date.
    CREATE
    MEMBER
    CURRENTCUBE.[Measures].[OPENBALANCE]
    AS
    Sum({Null:[Time].[Years
    Quarters Months Weeks Days].[Days].&[2013-01-01T00:00:00]},[Measures].[AmountCur]]),
    FORMAT_STRING
    = "Standard",
    VISIBLE
    = 1
    can you plz check the above once and guide me.
    Thankyou,
    Rakesh

  • How to close an open PO

    Hi,
    I have  a requistion and based on this requistion i have created a PO.
    But for some reason i couldn't receive goods receipts so i couldn't issue the goods.
    so the PO is still open. Now i want to close this PO.
    Please let me know the transaction and procedure to close the open PO.
    Deepthi

    FYI
    Closing a Production Order  
    Use
    The Closed (CLSD) status has been introduced in the production order. It has the following characteristics:
    No more costs can be posted to the order, that is, confirmations and goods movements are no longer permitted for the order.
    The order can no longer be changed. Exceptions to this are revoking the CLSD status and setting the deletion flag.
    All actions relating to the status technically completed (TECO) are executed.
    In a collective order, the CLSD status is also set for subordinate orders.
    If the system comes across an order in the collective order that cannot be closed, the orders that come between this order and the leading order are also not closed. Other subtrees are closed if they only contain orders that can be closed.
    Prerequisites
    Prerequisites for setting the CLSD status are:
    The order must have the status Released (REL) or Technically completed (TECO)
    The order balance must be 0
    There can be no open purchase requisitions, purchase orders or commitments
    There can be no future change records from confirmation processes
    Activities
    The Closed (CLSD) status is only set automatically for subordinate orders in a collective order. To set the status, you have the following options:
    In the production order, choose Functions ® Restrict processing ® Close
    Function in mass processing
    Pl..award the points
    Thanks
    Saquib

  • How to get the transport request for a particular standard text?

    Hi,
    i want to know, how we get the transport request which associated for standard text.
    Please note already the standard text is assigned to the TR using RSTXTRAN program.
    i have a std text. i want to find the related TR for that!
    rds,
    Siva.

    Refer the link. It might tellsa about attaching to transport request but using the way you can find also -
    Re: How To Transport STANDARD TEXTS??
    Regards,
    Amit
    Reward all helpful replies

  • How to close a open file at OS level using Java program

    I want to find a way to close a file connection at operating system (Windows 2000) level so that another program can overwrite the file. Here is the background information:
    I need to schedule a job to automatically update certain files. But, when someone is accessing the file, the update will fail until I manually close the file connection at file server ( I have the system administrator privilege). I want to write a Java program that can automatically close the open file like I do manually at file server. This program can be placed on the file server in order to the job.
    Does anyone know if there is any way in Java that can do the job?
    Thanks

    It's up to the application that opened the files to close them. There are utilities you can use to list/kill process on the machine..but you have to ask yourself WHY is this happening in the first place? It's more correct to fix the REAL problem - having your apps shut down properly - than to write a utility to close files.
    That said...java alone cannot do this. You would either have to use JNI to get native access to the system or use System.Runtime to call an executable that does the job for you.

  • How to close all opened apps?

    How do you close all opened apps? I do not think sliding the app card off the screen closes the app, so how do you completely close them?
    Post relates to: HP TouchPad (WiFi)

    sinanju wrote:
    ... which does not directly answer the question...
    Direct answer: you can't.
    Here is what the User Guide says:
    To close an application or a screen, in Card view (see Manage
    applications in Card view), throw the card off the top of the screen. If
    cards are in a stack (see Work with stacked cards), you can only throw
    one card at a time.
    You close the apps by throwing the card away, plain and simple.
    @direstrates:  Are you asking how to kill all running apps with one command?  Only way I know how is by doing the two-finger reboot.
    WyreNut
    I am a Volunteer here, not employed by HP.
    You too can become an HP Expert! Details HERE!
    If my post has helped you, click the Kudos Thumbs up!
    If it solved your issue, Click the "Accept as Solution" button so others can benefit from the question you asked!

  • How to create a billing request for service order that has serv contract?

    Dear Experts,
    Can you please help me?
    The scenario is, my client has service contracts with their customer but they want to charge customers not periorically but as and when they provide service (ad-hoc).
    So how to bill the customer in this case?
    In my testing if I have a service contract (order type = SC) then when I create service order, system automatically picks up standard order type SM01. (which is service order with contract.)
    And when I perform time confirmation and material consumption (goods issue), actual costs gets booked to the service order. However, using the service order number as referece, if I try to create a billing request in DP90, system create a blank billing request with no line items.
    So, could you please advice, how can I create a billing request for a service order, if I have a contract?
    Appreciate your help.
    Best regards,
    Abdul Rafey

    Hi Praveen,
    Thank you very much for your reply. I appreciate your time and efforts.
    Ok, these are the steps how I have executed the process.
    - I have created a service contract for an equipment. In the service contract, I have maintained the service material in the line item, maintained price and assigned equipment in the technical objects.
    - I created service notification, which automatically picked up contract.
    - When I create service order, from notification screen, system automatically picked up correct order type SM01 (Service order with contract).
    - Then I planned operations and spare parts in the service order.
    - Checked settlement rule in the service order is SDI.
    - released and saved service order.
    - Using IW42, in SAP ECC6, you can perform  both time confirmation and material consumption using the same screen and also TECO service order. System issues message to say, goods issue have been posted.
    - when you check the document flow of service order, you can see operations posted, and also goods issue posted.
    - check cost tab to see actual costs. (if I want to settle costs from service order to service contract, I can do so w/o a problem in KO88)
    - Use DP90, enter service order number and create billing request. System takes to billing request screen but it is blank. No line items.
    - So, since there is a contract, in this case, am I meant to be creating the billing request from Service contract? instead of from Service order?
    I hope I have clarified myself better this time.
    Best regards,
    Abdul Rafey

  • How to query the opening balance for an specific account for an spec. date

    Hi all,
    for my user query I need to calculate the opening balance for an cash account for an specific date.
    Any ideas, how can I do this?
    Or may be you know a field in an SBO table that already contains information I need...
    Best Regards,
    Inna

    Hi Inna,
    to find the opening balance for an account or a business partner, please see SAP Note [1114253|https://service.sap.com/sap/support/notes/1114253] :
    Symptom
    How to find the opening balance of a business partner or G/L account.
    Other terms
    Account, customer, supplier, vendor, creditor, debitor, start, initial, first, opening balance, business partner, G/L, SAP Business One
    Reason and Prerequisites
    Consulting
    Solution
    There are several possible approaches:
    Approach 1 - Business Partner Opening Balance:
    1. Go to Business Partners -> Business Partner Master Data -> find the Business Partner
    2. Click on the orange link arrow next to the field 'Account Balance' in the header region of the window.
    3. Untick the boxes next to 'Posting date from', 'Display' and 'Display Unreconciled Trans. Only'.
    4. Click on the button 'Refresh'.
    5. Find 'OB' in the column 'Origin', this is the opening balance journal entry.
    Approach 2 - Business Partner Opening Balance:
    1. Go to Business Partners -> Business Partner Master Data.
    2. Click on the orange link arrow next to the field 'Account Balance' in the header region of the window.
    3. Untick the boxes next to 'Posting date from', 'Display' and 'Display Unreconciled Trans. Only'.
    4. Click on the button 'Refresh'.
    5. Double click on the column header 'Posting Date' to find the earliest transaction on the business partner account. This transaction could be opening balance, verify this with the company accountant.
    Approach 3 - G/L Account Opening Balance:
    1. Go to Financials -> Chart of Accounts -> click on the account name once.
    2. Click on the orange link arrow next to the field 'Balance'.
    3. Untick the boxes next to 'Posting date from', 'Display' and 'Display Unreconciled Trans. Only'.
    4. Click on the button 'Refresh'.
    5. Find 'OB' in the column 'Origin', this is the opening balance journal entry.
    Approach 4 - Business Partner and/or G/L Account Opening Balance:
    1. If using SAP Business One 2005 SP01 or earlier, go to Reports -> Query Generator -> click on 'Execute'.
    2. If using SAP Business One 2007 or later, go to Tools -> Queries -> Query Generator -> click on 'Execute'.
    3. Ignore the red system message in the bottom of the screen.
    4. Click on the pencil icon in the top left of the window, the field with 'SELECT *' will change colour to white, then yellow when activated by clicking in the field.
    5. Copy the query below:
               SELECT T0.[TransId], T0.[Debit], T0.[Credit] , T0.[CreatedBy], T0.[TransType] FROM [dbo].[JDT1]  T0 WHERE T0.[TransType] = '-2'  and T0.[ShortName]  = '[%1]'
    6. Click on 'Save' and give the query an appropriate name and select the appropriate category.
    7. Click on 'Execute'.
    8. Click on 'Existing Values'.
    9. Select the G/L account or the Business Partner name from the list and click on 'OK'.
    10. The system message 'Records retrieved by this query #' (# = number of records) will pop up. Click on 'OK'.
    All the best,
    Kerstin

Maybe you are looking for

  • SetTransform prevent repaint in background layers

    Hi. I'm experiencing an issue with swing layers. I'm drawing in a JPanel and using an AffineTransform for zoom. When I drag a palette (JInternalFrame) over the panel it leaves a trail. I've been trying to figure out why and it seems that it only happ

  • Interpreting Trace File.

    Hi i am using 10.2.0.4.0 version of oracle. I am having trace file info as below, for one of the query. So how should i interpret the trace file? What is the issue in the query, and the scope of improvement in the query? please note that , i have rem

  • Graphic on content pane or JPanel

    how might you get a picture on a JPanel or the ContentPane?

  • Timeline clips

    I am using FCPX and I am still trying to figure it out, i already learn a lot. Her are the things that I really need to know how cna i do it...sorry to bother the good folks here... I need to my video not to be connected all the time, I tried to disa

  • Messages App says address is unverified?

    I just updated to Mavericks, and I was pretty pumped to get it because of the messages app. (I was on OSX Lion earlier) I tried signing in with my normal Apple iD and it says it's unverified. I've been using this Apple iD for my iPhone and anything A