Problem while deleting activation request

HI all,
we are getting short dumps with UNCAUGHT_EXCEPTION and CX_RSR_X_MESSAGE when trying to delete ODS activation requests, included in Business Content process chains. These requests went bad because the authorization for user ALEREMOTE was not set properly.
After we set this, we re-ran the process chains which loaded the ODS but all failed to activate them. Trying to delete any request causes a dump. Even selecting the "reconstruction" tab of the request causes a dump.
Is there any way to "clean" or reset everything ?
Of course, any effective suggestion will be appreciated and rewarded
Thanks

Hi,
In your short dump description (ST22) or in the system logs (SM21), there should be listed the table where the issue comes from.
When you found that table, try to adjust (via SE14) that table (first without deleting data, then if it doesn't work with the deleting option selected).
Hope it helps,

Similar Messages

  • Problem while deleting overlaping request from cube

    Hi experts,
    I have one process chain in which i have one step where i am executing one DTP to load one cube and in next step deleing overlapping requests from same cube.
    i am getting error at that step "Error when deleting requests for comparison request DTPR_4CCDXZLK1OIGCVGGE1PP31Z3Y"
    what could be reason?
    plz help

    Hello,
    I guess you have not defined the overlapping variant properly.
    Please goto the definition of the variant and check for the right DTP input.
    Then at the bottom, select second option "Edit all Infocubes with Following Delete Selections"
    Click on deletion selections -> select delete existing requests.
    Also select if same datasource and source system. and importantly select the radio button as overlapping.
    Then save the variant. and try to use it.
    Regards,
    Shashank

  • Problem while sending/Receiving request using the HttpURLConnection obj

    Hi,
    We are facing the problem while passing the request in Weblogic.
    Looks like there is some problem with Weblogic while sending/Receiving the request using the HttpURLConnection object.
    Currently we are migrating 2 applications to WebLogic. Application1 to application2 request should pass.
    Below is some example we tried:
    "When we send a request to our code using the SSOAdaptor code (which handles the request/session in our application) which is on the SunOne server the request parameters are received by our code successfully. And also in Create User Functionality of application1 we are sending a request to webpass(which is on Sunone Server) using the HttpURLConnection object and the SOAP request is received successfully by the Webpass."
    Looks like when we send request (using HttpURLConnection) from a server other than Weblogic to a servlet in a Weblogic the request parameters are received with out issues.
    Where as when the request is sent from WebLogic to WebLogic the request parameters are missing some how.
    Is there any issue in Weblogic? Please helpus on this.
    Thanks,
    Nagesh
    Edited by: user9307541 on Mar 15, 2010 5:08 AM

    Hi,
    Please find below scenario for testing.
    We have tested the SSOAdaptor code (it is the fucntion name which will send the data from source) locally by hittiing the WPS adaptor URL in a Java client program(TestRequest.java) and the request parameters were reaching the WPS Adapter successfully.
    Then we have written two test servlets to test the communication between SSOAdaptor(TestServlet.java) and WPS adaptor(WPSServlet.java).
    Functionality of TestSevlet: It is sending a request to WPSServelt similar to the way we are doing it in SSOAdaptor.
    Functionality of WPSServlet: It will receive the request parameters and write the parameter Map to console.
    We have deployed and these two servlets(in a single webapplication) on Tomcat server and the request parameters are reaching the WPSServlet successfully.
    Output on Tomcat server:
    before sending request
    **********************Inside WPS Servlet -- the request Map is:{TypeAcc=[Ljava.lang.String;@14e3f41, ServiceName=[Ljava.lang.String;@1acd47, GMEPortalUserID=[Ljava.lang.String;@19b04e2, UserID=[Ljava.lang.String;@5dcec6, Country=[Ljava.lang.String;@b25b9d}
    after sending request
    After this we have deployed these two servlets (with in a single webapplication) on the Weblogic server in Dev machine(path: /apps/usmport/domains/usmport/servers/usmport_admin/upload/ssoAdaptor/WEB-INF/classes/com/gm/gmeportal/security/adaptor) and
    now the request parameters are not reaching the WPSServlet.
    Output on Weblogic Server:
    before sending request
    **********************Inside WPS Servlet -- the request Map is:{}
    after sending request
    Looks like there is some problem with Weblogic while sending/Receiving the request using the HttpURLConnection object.
    When we send a request to WPSAdaptor using the Old SSOAdaptor code which is on the SunOne server the request parameters are received by WPS successfully. And also in Create User Functionality of Portal we are sending a request to webpass(which is on Sunone Server) using the HttpURLConnection object and the SOAP request is received successfully by the Webpass.
    Looks like when we send request (using HttpURLConnection) from a server other than Weblogic to a servlet in a Weblogic the request parameters are received with out issues. Where as when the request is sent from weblogic to weblogic the request parameters are missing some how.
    Please find below javs source code used to test this:
    TestRequest.java
    import java.io.BufferedReader;
    import java.io.DataOutputStream;
    import java.io.InputStream;
    import java.io.InputStreamReader;
    import java.io.OutputStream;
    import java.net.HttpURLConnection;
    import java.net.MalformedURLException;
    import java.net.URL;
    public class TestRequest {
         * @param args
         public static void main(String[] args) throws Exception{
              // TODO Auto-generated method stub
              excutePost("http://localhost:8080/Testing/TestServlet", "GMEPortalUserID=captest.wss@it0555&UserID=bl1133&Country=it&TypeAcc=256&ServiceName=Logon");
              //System.out.println("********** Now the request is from SSO *****************");
              //excuteGet("http://10.156.0.173:7013/channel21/wpsadapter", "GMEPortalUserID=captest.wss@it0554&UserID=bl1133&Country=it&TypeAcc=256&ServiceName=Logon");
         public static String excutePost(String targetURL, String urlParameters)
         URL url;
         HttpURLConnection connection = null;
         try {
         //Create connection
         url = new URL(targetURL);
         connection = (HttpURLConnection)url.openConnection();
         connection.setRequestMethod("POST");
         connection.setRequestProperty("Content-Type",
         "application/x-www-form-urlencoded");
         connection.setRequestProperty("Content-Length", "" +
         Integer.toString(urlParameters.getBytes().length));
         connection.setRequestProperty("Content-Language", "en-US");
         connection.setUseCaches (false);
         connection.setDoInput(true);
         connection.setDoOutput(true);
         //Send request
         DataOutputStream wr = new DataOutputStream (
         connection.getOutputStream ());
         wr.writeBytes (urlParameters);
         wr.flush ();
         wr.close ();
         //Get Response     
         InputStream is = connection.getInputStream();
         BufferedReader rd = new BufferedReader(new InputStreamReader(is));
         String line;
         StringBuffer response = new StringBuffer();
         while((line = rd.readLine()) != null) {
         response.append(line);
         response.append('\r');
         rd.close();
         System.out.println("Response is:" + response);
         return response.toString();
         } catch (Exception e) {
         e.printStackTrace();
         return null;
         } finally {
         if(connection != null) {
         connection.disconnect();
         public static String excuteGet(String targetURL, String urlParameters) throws Exception
              URL url = new URL(targetURL);
              HttpURLConnection httpurlconnection =
                   (HttpURLConnection) url.openConnection();
              /*httpurlconnection.setRequestProperty(
                   "cookie",
                   constructRequestParams(httpservletrequest.getCookies()));*/
              httpurlconnection.setDoOutput(true);
              httpurlconnection.setDoInput(true);
              httpurlconnection.setRequestProperty(
                   "Content-length",
                   String.valueOf(urlParameters.length()));
              OutputStream outputstream = httpurlconnection.getOutputStream();
              outputstream.write(urlParameters.getBytes());
              outputstream.flush();
              //Get Response     
              try{
         InputStream is = httpurlconnection.getInputStream();
         BufferedReader rd = new BufferedReader(new InputStreamReader(is));
         String line;
         StringBuffer response = new StringBuffer();
         while((line = rd.readLine()) != null) {
         response.append(line);
         response.append('\r');
         rd.close();
         System.out.println("Response from SSO is:" + response);
         return response.toString();
         } catch (Exception e) {
         e.printStackTrace();
         return null;
         } finally {
         if(httpurlconnection != null) {
              httpurlconnection.disconnect();
    TestServlet.java
    import java.io.BufferedReader;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.InputStreamReader;
    import java.io.OutputStream;
    import java.net.HttpURLConnection;
    import java.net.URL;
    import javax.servlet.ServletException;
    import javax.servlet.http.HttpServlet;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    * Servlet implementation class TestServlet
    public class TestServlet extends HttpServlet {
         private static final long serialVersionUID = 1L;
    * Default constructor.
    public TestServlet() {
    // TODO Auto-generated constructor stub
         * @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response)
         protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
              // TODO Auto-generated method stub
              doPost(request,response);
         * @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response)
         protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
              // TODO Auto-generated method stub
              //System.out.println("********************** the request Map is:" + request.getParameterMap());
              try {
                   System.out.println("before sending request");
                   excuteGet("http://localhost:7003/ssoAdaptor/WPSServlet", "GMEPortalUserID=captest.wss@it0554&UserID=bl1133&Country=it&TypeAcc=256&ServiceName=Logon");
                   System.out.println("after sending request");
              } catch (Exception e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
         public String excuteGet(String targetURL, String urlParameters) throws Exception
              URL url = new URL(targetURL);
              HttpURLConnection httpurlconnection =
                   (HttpURLConnection) url.openConnection();
              /*httpurlconnection.setRequestProperty(
                   "cookie",
                   constructRequestParams(httpservletrequest.getCookies()));*/
              httpurlconnection.setDoOutput(true);
              httpurlconnection.setDoInput(true);
              httpurlconnection.setRequestProperty(
                   "Content-length",
                   String.valueOf(urlParameters.length()));
              OutputStream outputstream = httpurlconnection.getOutputStream();
              outputstream.write(urlParameters.getBytes());
              outputstream.flush();
              //Get Response     
              try{
         InputStream is = httpurlconnection.getInputStream();
         BufferedReader rd = new BufferedReader(new InputStreamReader(is));
         String line;
         StringBuffer response = new StringBuffer();
         while((line = rd.readLine()) != null) {
         response.append(line);
         response.append('\r');
         rd.close();
         //System.out.println("Response from SSO is:" + response);
         return response.toString();
         } catch (Exception e) {
         e.printStackTrace();
         return null;
         } finally {
         if(httpurlconnection != null) {
              httpurlconnection.disconnect();
    WPSServlet.java
    import java.io.IOException;
    import javax.servlet.ServletException;
    import javax.servlet.http.HttpServlet;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    * Servlet implementation class WPSServlet
    public class WPSServlet extends HttpServlet {
         private static final long serialVersionUID = 1L;
    * @see HttpServlet#HttpServlet()
    public WPSServlet() {
    super();
    // TODO Auto-generated constructor stub
         * @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response)
         protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
              // TODO Auto-generated method stub
              System.out.println("**********************Inside WPS Servlet -- the request Map is:" + request.getParameterMap());
         * @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response)
         protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
              // TODO Auto-generated method stub
              doGet(request,response);
    Thanks,
    Nagesh

  • Problem in deleting a request from Dso

    Hi Experts,
    I have loaded the request into DSO, after activation, i have changed the QM status to red and try to delete it from the manage screen. But it is not getting deleted from DSO.
    I have used following tables :
    RSREQDONE
    RSICCONNT
    RSODSACTREQ
    For deletion purpose, but i'm not provided with authorization ..
    And also i have used FM to delete the request from DSO , but it also failed ..
    Can you please help me out in this regard..
    Thanks
    PT

    Hi,
          Please check if your DSO is locked by any other process.  You can check the lock status from SM12. If your DSO is locked by some other process, you will have to wait till that process finishes or kill the process if it is not required so that your DSO will be unlocked. Once your DSO is unlocked you can retry activation. If this doesn't work, please check if you have the authorization to delete data. after trying to delete the DSO you can run the transaction SU53 to see if there is any authorization failure.
    Hope this helps you.
    Thanks,
    Nithin Reddy.

  • Problem in deleting a request from ODS

    Hi,
    i am trying to delete a request (not activated) from ODS, when i checked in SM37 for the status of the job it shows as Cancelled, but when i see for the request in ODS, the requested is deleted, could anyone please let me know why job in SM37 is cancelling when the request is actually deleting,
    This is not the case with activated request.
    please see the worklog of the cancelled job
                                                                                    Job started                                                                        
    Step 001 started (program RSDELPART1, variant &0000000005236, user ID KUMARV1)     
    Delete running: ODS object ZCFORO01, from 512,483 to 512,483                       
    Delete is scheduled; Selection conditions were substituted                         
    Request REQU_45IYZ9A2BQFRW0IUY5EB4MZ9W successfully deleted from ODS object ZCFORO01
    ABAP/4 processor: MESSAGE_TYPE_X                                                   
    <u><b>Job cancelled </b></u>

    Hi Arun,
    Yes the system raises an exception and saying that there is an error in ABAP code, could you please let me know what is the error, i have tried this deletion with 3-4 different ODS and to different systems i.e. in Q, P system
    Abap code as specified by Exception in ST22 transaction
    The termination occurred in the ABAP program "SAPLRSSM_PROCESS" in         
    "RSSM_PROCESS_REQUDEL_ODSO".                                              
    The main program was "RSDELPART1 ".                                                                               
    The termination occurred in line 114 of the source code of the (Include)   
    program "LRSSM_PROCESSU19"                                                
    of the source code of program "LRSSM_PROCESSU19" (when calling the editor  
    1140).                                                                    
    The program "SAPLRSSM_PROCESS" was started as a background job.                                                                               
    Source code extract                                                                               
    000840       endif.                                                        
    000850       append l_s_rnr_del to l_t_rnr_del.                            
    000860     endif.                                                          
    000870     delete l_t_rnr_del where                                        
    000880            rnr = ''.                                                
    000890     loop at l_t_rnr_del into l_s_rnr_del.                           
    000900       l_idx = sy-tabix.                                             
    000910       if l_s_rnr_del-sid is initial.                                
    000920         call function 'RRSI_VAL_SID_SINGLE_CONVERT'                 
    000930           exporting                                                 
    000940             i_iobjnm = '0REQUID'                                    
    000950             i_chavl  = l_s_rnr_del-rnr                              
    000960           importing                                                 
    000970             e_sid    = l_s_rnr_del-sid.                             
    000980       endif.                                                                               
    000990       if l_s_rnr_del-odssid is initial and             
    001000          not l_s_rnr_del-odsrnr is initial.            
    001010         call function 'RRSI_VAL_SID_SINGLE_CONVERT'    
    001020           exporting                                    
    001030             i_iobjnm = '0REQUID'                       
    001040             i_chavl  = l_s_rnr_del-odsrnr              
    001050           importing                                    
    001060             e_sid    = l_s_rnr_del-odssid.             
    001070       endif.                                           
    001080       modify l_t_rnr_del from l_s_rnr_del index l_idx. 
    001090       if l_min_sid > l_s_rnr_del-odssid.               
    001100         l_min_sid = l_s_rnr_del-odssid.                
    001110       endif.                                           
    001120     endloop.                                           
    001130     if sy-subrc <> 0.                                  
         >       message x000.                                    
    001150     endif.

  • Problem in deleting the request from ODS......

    Hi,
    I am not able to delete one INIT request from the ODS. This request was taking long time and eventually it turned to RED. Data was there in PSA but I deleted the request and thought of doing the fresh load .
    Problem is that although I have deleted the request from the ODS , it is again coming back to ODS . I have started the fresh load. AS the previous also coming to this ODS its taking long time to load the data.
    Can some body let me know how to STOP/DELETE the old request??  I have already turned everything to RED QM status , overall status etc. but still its not getting stoped.
    Thanks Jeetu

    Hi Jeetu,
    Even though u find the job and cancel it or delete it the data load will not stop untill it loads the entire data!
    Hope there will be large volume of data !
    Until the data load is complete wait and then delete the request and then delete the init and start the fresh load!
    I too faced the same issue but i am helpless i could not stop the data load inthe middle!
    If you found any solution for this let me also know
    Thanks
    Ram

  • Problems with delete overlapping requests from InfoCube in PC

    Hi guys,
    Iu2019m using delete overlapping requests from InfoCube in Process Chains, but Iu2019m not being able to adjust it to my specific requirement.
    For example:
    I execute DTP to load InfoCube XPTO with Fiscal Year 2008 and 2009. After this I have to load again, but only for 2009.
    In this specific example I want my process chain to delete the 2009 data from my first load, because it is overlapped, and leave 2008 data.
    Is this possible? If yes how?
    Thanks in advance
    Jão Arvanas

    It will not work that way.
    It will look if the selections are same then it wil delete if not then it will not do that activity.
    Overlapping settings which you might chosen is based on the delete overlapping for the same selections..
    So in this case the selections are different and hence its not possible.
    Thanks
    Murali

  • CUP. How to remove a deleted active Request Type from Request Access screen

    Hi,
    I created a new Request Type in CUP, assigned actions, marked it active and saved.
    I then deleted the Request Type without first marking it as inactive.
    The request type is still visible on the 'Request Access' page but no longer visible on the 'Request Type' screen in Configuration.
    Is there a way to remove this from the 'Request Access' page without rebooting?
    Thanks,
    Babak

    Dude I just helped you pass the 1000 point barrier.
    Excellent answer, refreshing the cache in the Miscellaneous section worked.
    Well done.

  • Error while deleting a request

    Hi All,
    When trying to delete a request from a master data object an error appears which says:
    Cannot delete request DTPR_* of table RSN* for deletion.
    Please let me know what needs to be done here so that request is deleted.
    This is urgently required..thanks..

    For deleting any master data
    Need to delete first where its referenced to ,so check the where used list for the infoobject and delete the places where that master data is referenced
    Typically - Attributes,Hierarchies,Texts,Transaction data,in Query - Hardcoded master data
    Lots of ways around ,even using database utility ;however that leads to inconsistencies and requires sounds knowledge so wont advocate those steps.
    You can follow below steps -
    R-Click Delete master data ,it wont delete all if its referenced,so now go to
    Tcode - SLG1
    Object = RSDMD
    Subobject = MD_DEL
    Hit execute button
    it will fetch you the log showing all the places(references) where you need to delete the data in order to delete the actual master data.
    After deleting the data from referenced places you can completely delete the master data.
    Hope it Helps
    Chetan
    @CP..

  • Error while deleting PSA Request Manually

    Hi Experts,
    I am trying to delete Older PSA Request, but it is throwing an Error "Internal Error occured during Authorization Check"....
    Also, when i tried to see the Monitor, it is not showing any records anything...Its showing as no logs found...
    I have used the Function Module "RSAR_PSA_CLEANUP_DIRECTORY_MS", but it is not working.
    Can anybody suggest if there is any solution to delete PSA Request?
    Regards,
    Anuja

    I don't believe this has anything to do with Crystal Reports. Please post in the SAP classic forums.
    Don

  • Problem in Delete PSA Request

    Hello Guys,
    I have come across a strange behavior of Delete PSA Request variant in Process Chains. When I am trying to delete PSA through Process Chain, I could delete PSA of all datasources except 0CO_OM_WBS_1.
    I tried it through different combinations, but could not delete data in 0CO_OM_WBS_1 through Process Chain. Can anyone help me through this, or any valid explanations on this front.
    Thanks,
    Saurabh

    Hi saurabh,
      It seems that you have some inconsistent requests in your PSA. Try running the program RSAR_PSA_CLEANUP_DIRECTORY/_MS and give your PSA technical name there which can be easliy found out once you click on the manage tab of you PSA at the top.
    Just put that technical name & run the program in repair mode. One the program is success full, your chain should be able to delete the requests there after.
    Check the Below thread, on how to delete the inconsistent requests from PSA.
    Finding out the details of the user who deleted a PSA request manually
    hope that the info helps you.
    Thanks

  • Problem in deleteing the request

    H All,
               We ran a load to Master Data (info provider)object.The Load got failed due to invalid data entries.Wheb i tried to dele that particular request from infoprovider .Request is not getting deleted and got folloed msg.
    You want to delete request(s) from InfoProvider 0AUVEHICLE
    The data target is a master data table
    The records in the request are no longer transparent in the table
    Only the control entry that shows that the request has been updated
    already, is deleted.
    This means that the request can be updated again.
    Can you please help me in deleting this request.
    Kranthi

    Kranthi,
    This means that even though you delete the request - the master data entries still remain. This happens for Master Data.
    You will have to delete the same and reload the data back in.
    For example if you data load has :
    1|BCD|Sales
    and this is part of your master data load , even if you delete the request the entry is not deleted - the entry still remains - you can delete the request in the manage atb and reload the data once again.... SAP is just givig you information that Master Data Objects are not like a DSo where if you delete the request the entries go away. This is because the Infobject tables do not have any request based data - al the data gets updated into the same tables and once you load the data - the data remains there till a manual delete is triggered and request based deletion is not possible...

  • Problem while deleting the Project & Extension created using EEWB

    Hi
    I have created a Project and Extension to add a new field in Opportunity using EEWB however it got some errors and hence
    wanted to delete this Extension and Project as well but while deleting the Extension system is throwing an error 'Extension XXX couldn't be deleted'.
    Because of this we have been facing some issue in BW Extractions.
    Could you please help me out how can we delete this ?
    Best Regards
    Anil

    Hi Prasenjit
    I have deleted all the fields and corresponding structures as per your suggestion however still I'm not able to delete the
    Extension and Project.
    Best Regards
    Anil

  • Problem while deleting objects in Transport request

    Hi  Guys,
    I am working on some object .It has some tables ,RFC's etc
    If I make changes to some of the objects the next day aging the same object is attached with the same name in the Transport Request.Also if i try to delete one out of it,I get the folllowing message & I am unable to delete it.Please guide on both.
    Message: "Object entry exists more than once. Sort and compress first"
    1. why same object gets attached to the request again?
    2.How to delete the duplicates entries of the object

    Hi,
    If more than one user has worked on the same object, then it would be included in the TR twice.
    Right click & select SORT COMPRESS, then try to delete.
    Best regards,
    Prashant

  • Facing problem While deleting rows and adding rows

    Hi,
    In my form i have pass values to table rows by selecting values from Dropdown list.
    i have taken 3 hidden obj and passing the dropdown values to hidden objects and then from hidden objects to table rows.
    h1,h2,h2 are hidden obj
    EMPNO,EMPNAME, DESIGNATION are drop downlist
    i have add button with the following code
    if(form1.P1.ItemSet.EMPNO.rawValue != null){
    form1.P1.ItemSet.instanceManager.addInstance();
    form1.P1.execInitialize();
    var dynamicArray = form1.P1.resolveNode("ItemSet[" + arrayIncri + "]");
    dynamicArray .EMPNO.rawValue = form1.P1.hidden.h1.rawValue;
    dynamicArray .EMPNAME.rawValue = form1.P1.hidden.h2.rawValue;
    dynamicArray .DESIGNATION.rawValue = form1.P1.hidden.h3.rawValue;
    arrayIncri++;
    form1.P1.SF1.EmpID.rawValue = null;
    form1.P1.SF1.EmpName.rawValue = null;
    form1.P1.SF1.Designation.rawValue = null;
    My delete button code is
    _ItemSet.removeInstance(this.parent.index);
    form1.P1.execInitialize();
    My problem is adding is happening while click and deleting is happening to the perticular row but once i delete paricular row then again if i want to add new row then it is taking null values . and agian if i click add then the values are passing to the next row
    means i am getting null row if i do add funtionality after delete funtionality....
    Please help me out in this..
    Subba reddy

    Hi,
    I got the answer for this query, but when i do download and upload of the files from R/3 to GRC. Still it is not showing me the new transactions which were developed in R/3.
    it means when i try to add the transaction in a function, under search mode with respective of the r/3 system, it is not showing me the search results.
    What i did was, i run the reports /VIRSA/ZCC_DOWNLOAD_DESC & /VIRSA/ZCC_DOWNLOAD_SAPOBJ and uploaded them as below in GRC.
    Text Objects - /VIRSA/ZCC_DOWNLOAD_DESC
    permissions   -  /VIRSA/ZCC_DOWNLOAD_SAPOBJ
    For each of the download i get 2 files for each and i tried to upload both of them but no luck.
    Please suggest me, as am missing anything in this process
    SV

Maybe you are looking for