Problem in creating a request

Hi Friends,
I want to transport a table to the production, How can I create a request to that table, I am unable to create a request for that table.
Thanx in advance,
Line

Hi,
a) Is the table in a package and not a local object??
b) check whether the table is already locked in a request-> thats the reason it may not be creating a request.
In Se11 => open your table in change , display mode and under Utilities=>versions=>version management check under request whether it is local , or any other request has already been created.
Regards,
Narayani

Similar Messages

  • Pop problem while creating spool request in reuse_alv_grid_display

    Hi Experts,
    I am trying to create a spool request of alv
    and problem is that i do not want pop-up window for asking output devices,
    actually i am calling reuse alv in loop and following steps i have done:
    w_print-print = 'X'.
      CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
        EXPORTING
          I_BYPASSING_BUFFER = 'X'
          I_CALLBACK_PROGRAM = SY-REPID
          IT_FIELDCAT         = FIELDCAT[]
          I_DEFAULT           = 'X'
          I_SAVE                = 'X'
          is_print                 = w_print
        TABLES
          T_OUTTAB           = T_FINAL
        EXCEPTIONS
          PROGRAM_ERROR      = 1
          OTHERS             = 2.
      IF SY-SUBRC <> 0.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    Please give the solution.
    Thanks
    Pankaj

    Hi,
    Use FM GET_PRINT_PARAMETERS ,  and  use command NEW-PAGE PRINT ON PARAMETERS <wa_params> NO DIALOG. before calling the alv FM.
    ls_print-print = 'X'.
    DATA: lwa_params TYPE pri_params,
          lv_valid TYPE c.
    CLEAR: lwa_params, lv_valid.
    CALL FUNCTION 'GET_PRINT_PARAMETERS'
      EXPORTING
        in_parameters          = lwa_params
        layout                 = 'X_65_132'
        line_count             = 65
        line_size              = 132
        no_dialog              = 'X'
      IMPORTING
        out_parameters         = lwa_params
        valid                  = lv_valid
      EXCEPTIONS
        archive_info_not_found = 1
        invalid_print_params   = 2
        invalid_archive_params = 3
        OTHERS                 = 4.
    MOVE-CORRESPONDING lwa_params TO ls_print-print_ctrl-pri_params.
    ls_print-print_ctrl-pri_params-pdest = 'LP01'. " your printr device
    NEW-PAGE PRINT ON PARAMETERS lwa_params NO DIALOG.
    then call FM CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'.
    this will work.
    refer link [ALV - print - create spool request;
    Regards,
    Ravi.

  • Problem in creating user request through ContentDB API

    Hi
    I am trying to create user request on the document. Workflow is configured on the document parent folder. I am trying to submit the document for workflow.
    Here is the code i used to create user request
    RequestManager reqM = session.getRequestManager();
    long[] itemId = { item.getId() };
    NamedValueSet[] docParameters = new NamedValueSet[]
    new NamedValueSet(
    new NamedValue[]
    new NamedValue(Attributes.WORKFLOW_PARAMETER_NAME,"JUSTIFICATION"),
    new NamedValue(Attributes.WORKFLOW_PARAMETER_DEFAULT_VALUE,
    "Edited para 2"),
    new NamedValueSet(
    new NamedValue[]
    new NamedValue(Attributes.WORKFLOW_PARAMETER_NAME,"IFS_ECM_VERBOSE_LOGGING"),
    new NamedValue(Attributes.WORKFLOW_PARAMETER_DEFAULT_VALUE,
    Boolean.FALSE),
    NamedValue[] options2 = new NamedValue[] {
    ClientUtils.newNamedValue(Attributes.WORKFLOW_CONFIGURATION_PARAMETERS,docParameters)};
    reqM.createUserRequest(itemId, options2);
    I got the following error:
    AxisFault
    faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.userException
    faultSubcode:
    faultString: ORACLE.FDK.UnexpectedError:ORACLE.FDK.ServerError
    faultActor:
    faultNode:
    faultDetail:
         {http://xmlns.oracle.com/content/ws}fault:<detailedErrorCode xsi:type="xsd:string">ORACLE.FDK.ServerError</detailedErrorCode><errorCode xsi:type="xsd:string">ORACLE.FDK.UnexpectedError</errorCode><exceptionEntries xsi:nil="true" xsi:type="ns1:ArrayOfFdkExceptionEntry"/><info xsi:nil="true" xsi:type="ns1:ArrayOfNamedValue"/><serverStackTraceId xsi:type="xsd:string">112-1191017621836</serverStackTraceId>
         {http://xml.apache.org/axis/}hostname:contentdb.sjrwmd.com
    ORACLE.FDK.UnexpectedError:ORACLE.FDK.ServerError
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:494)
         at java.lang.Class.newInstance0(Class.java:350)
         at java.lang.Class.newInstance(Class.java:303)
    However, If i create user request without passing any parameters it is working fine. I get error only when creating request with parameters.
    Please help.

    Hi
    I could able to get the request invoked. Earlier I tried with wrong parameters.
    Thanks

  • Problem with "Create Transport Request"

    Hi all,
    Iu2019m working with Solution Manager and Charm. I have a problem when I create a transport request.
    After that I put regular correction into status u201CIn developmentu201D I choose u201CCreate Transport Requestu201D from the menu but the system display the message u201CThe last action triggered is locked in the task listu201D  . Is it a problem of authorization in satellite system? The user that I use to create a transport request have sap_all profile in the satellite system. What settings do I have to use in satellite system and in solution manager?
    Thank in advance
    giovanni

    Make sure that the profile S_TMW_IMPORT and S_TMW_CREATE has the correction authorizations assigned and that it is assigned to the user TMSADM of client 000 of your satellite system.
    Note 807228 can be useful.
    Hope this helps,
    Roel

  • Problem in creating service request

    Hi all,
       I have created a custom RFC where I am using FM "CRM_ICSS_SRVREQ_CREATE". After this i am calling "CRM_ORDER_MAINTAIN" to update the same Service request for updating product version and activity.
    The service request created but it does not update the Activity category or you can say no effect of calling FM "CRM_ORDER_MAINTAIN".I tried "BAPI_ORDER_CHANGEMULTI" also in place of CRM_ORDER_MAINTAIN. But it does not work.
    When i execute it in Debug mode it works fine. Can anyone suggest me what causes the RFC to behave like this or what could be the solution.
    Thanks & Regards,
    Animesh

    Hi karthik,
    first of all thanks for your quick replies.
    Now, Still its not working. This is the order in which i am calling the FMs:
    CALL FUNCTION 'CRM_ICSS_SRVREQ_CREATE'
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT' (wait = true)
    CALL FUNCTION 'BAPI_BUSPROCESSND_CHANGEMULTI'
    CALL FUNCTION 'BAPI_BUSPROCESSND_SAVE'
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'(wait = true)
    I tried commit work and wait also but it also does not works.
    Thnks & Regards,
    Animesh

  • Problem in creating new request

    hi sap gurus gud mrng.i want a small clarification in creating a new request.
    i created a new company after creating a company it should be saved in my company request (by ceating new company request).instead of this i saved it in another company request..how will i change this pls give details.
    from
    sai

    Hi Sai,
    You need to follow follwing steps:
    You can delete your task from that request.
    Create a new task and save into new request.
    Best Regards
    Ashish Jain

  • Problem in Create Requisition Request E-recruitment

    Hi,
    I have configured the standard workflow WS45600028 for the E-recruitment process in HR administration services and able to trigger the workflow successfully when I create requisition in the portal.
    But the workflow fails at the first step 'Import the form data' since the method CL_HRASR00_WF_COMPONENTS-->DATAMAPPING)raises an exception when there are no entries in table T5ASRSCENARIOS.
    The case configuration is absolutely fine but yet am unable to figure out why any entries aren't created in the table T5ASRSCENARIOS.
    How the first entries are created in table T5ASRSCENARIOS? Is it through customising?
    Quick response will be highly appreciated.
    Thanks,
    Roopesh

    Inputs will be highly appreciated.
    Thanks,
    Roopesh

  • Problem with Creating HTTP Request

    I have this code.when I comment CFHTTPMessageSetBody(myRequest, bodyData); it works fine otherwise the program crashes.Any suggestions will be appreciated
    CFStringRef bodyData = CFSTR(""); // Usually used for POST data
    CFStringRef headerFieldName = CFSTR("X-My-Favorite-Field");
    CFStringRef headerFieldValue = CFSTR("Dreams");
    CFStringRef url = CFSTR("http://www.apple.com");
    CFURLRef myURL = CFURLCreateWithString(kCFAllocatorDefault, url, NULL);
    // requestMethod = CFSTR("GET");
    CFHTTPMessageRef myRequest =CFHTTPMessageCreateRequest(kCFAllocatorDefault, CFSTR("GET"), myURL,kCFHTTPVersion1_1);
    CFHTTPMessageSetBody(myRequest, bodyData);
    CFHTTPMessageSetHeaderFieldValue(myRequest, headerFieldName, headerFieldValue);
    CFDataRef mySerializedRequest = CFHTTPMessageCopySerializedMessage(myRequest);
    NSLog(@" %@",mySerializedRequest);

    I found out that i could enter agency and scheme for inbound and outbound but which scheme do i need ? Can you give me an example,too ?
    Regards,
    Gordon

  • [ICSS B2B] Problem  when creating a service request due to language

    Hi everyone.
    We have a web portal based on icss_b2b wich is linked with our backend (CRM).
    On the web portal, we should be able to create service requests and it works fine when we are using english.
    But if we log using german language, when we try to create a service request we have an error and creation ins't done.
    Do we need do to do any configuration in the xcm ? Crm ? to allow to create service request in a new language ?
    Thanks for your help.

    Hi,
    We are facing the same problem, were you able to solve this?
    Our Portal takes the language from the browser but we only want to allow people access to ICSS in French and English.
    Example:
    If browser language = French --> French ICSS
    If browser language = English --> English ICSS
    If browser language = Dutch --> English ICSS (English = default language)
    Many thanks for any feedback.
    Cheers,
    Geert

  • Problem in opening 'Find Service Request' and 'Create Service Request' HTML forms

    Hi,
    I  am working on creating some date for EBS Service, and I am unable to open 'Find Service Request' and 'Create Service Request' HTML forms.
    I keep getting the error message :
    Oracle error - 20001: ORA-20001: APP-FND-02902: Multi-Org profile option is required. Please set either MO: Security Profile or MO: Operating Unit profile option. has been detected in MO_GLOBAL_INIT.
    I have min knowledge of EBS set up and configuration. We just use EBS as a source system for our ETLs.  Please suggest any workaround to get resolve the issue.
    Thanks,
    Kishore

    Navigate to System Administrator responsibility > Profile > System. Search for the profile MO: Operating Unit and under responsibility field, put in the responsibility name you are using for creating the service request, click OK and enter the desired operating unit value in the next window. It pulls up all operating units defined and you can chose the desired one.
    Thanks
    Shree

  • Problems while creating the leave request via PTARQ

    Hi All......
    While trying to create leave request via PTARQ I am getting the following warning message
    Document created with warning: HRTIM00BLPRETRO 009 Earliest recalculation for time evaluation exceeded
    Please suggest what should be done.
    Abhi........

    It sounds like you are trying to post a leave request on a date that is too far in the past.
    Check:
    1. PA03, earliest retro acctg period.  The leave requst cannot be older than that data.
    2.. In IT0003 for the employee involved: Check Earl.pers RA date.  Leave request cannot be older than that date.
    If you want the leave request to be posted anyway, you either have to change the dates mentioned above (be careful, they are there for a reason). 
    Hope this helps
    Kirsten

  • Problem with Team Calendar from Create Leave Request

    Hi Expert,
    We are facing following 2 issues with Team Calendar-
    1)     When manager checks Team Calendar from create leave request he gets a warning message 'No team set up for the user in the selection                period.Contact Administrator'
    I know this issue has been reported earlier as well but i didn't find the thread where it has been answered correctly.
    - OADP configuration is correct.
    - Manager is head of org unit.
    - Also IT105 exist for manager as well as employees.
    We are currently checking on authorization side for this.
    2)   Team Calendar is showing leave details only for the current month. If we navigate to previous month it does not show anything even though there exist leave data for the given month. 
    Please suggest if we are missing something.
    Thanks & regards,
    Avinash

    Hi Nagendra,
    I dont remember the exact auth object but ask security team to apply trace for the user id and identify the same.
    Also i would suggest you to check following setting before checking authorizations-
    Get the Group of Organizational Views applicable for rule group in your case  from following path
    SAP Customizing Implementation Guide--> Personnel Management-->Manager Self-Service (Web Dynpro ABAP)--> Service Specific Settings-->Working Time--> Team Calendar--> Select Employees:
    After getting Group of Org View Check the Evaluation path used in OADP configuration.
    Please check if the evaluation path is correct as per your requirement.
    Regards,
    Avinash

  • Problem in Creating Check boxes as a column in a table using MVC

    I am trying to display a table format using the Model view controlers, with 1st column as a checkbox. if the user chooses some check boxes and submit the screen then i need to update the information in a custome table.
    I am having a problem in creating the check boxes, also pls tell me how to catch the line items checked by the user in the table...
    Sri

    HI Srinivas
       I am not getting what the exact problem is.....
    I am giving you a work around.....to me it does not seems to be an Ideal Solution..But Probably it will solve your problem....
    Changes To be Made in Page Layout...
    In Pagelayout     
    <htmlb:tableView id   = "tvX"                           width                 = "100%"                           visibleRowCount       = "8"                           fillUpEmptyRows       = "X"                         selectedRowIndexTable = "<%= selectedRowIndexTable %>"
    <b>selectedrowindex      = "<%= selectedrowindex %>"
    onrowselection        = "select"</b>
    selectionMode   = "MULTISELECT"                           table                 = "<%= sflight %>" />
    <b>selectedindexrow is an attribute of type INT4</b>
    In Do handle event.....instead of using the previous code use this one...
    if event->id = 'SUBMIT'.  
    DATA:      WA  TYPE  INT4.     
    LOOP AT SELECTEDROWINDEXTABLE INTO WA.
    *Here you can read your table of TABLEVIEW with index *equal to WA into a workarea and then use that workarea *to update the customer table      ENDLOOP.   
    elseif event->id = 'tvX'.
    tv ?= CL_HTMLB_MANAGER=>GET_DATA( request = request                                      name    = 'tableView'                                      id      = 'tvX' ).  
    IF tv IS NOT INITIAL.    
    table_event = tv->data.   
    selectedRowIndex = table_event->SELECTEDROWINDEX.
    append selectedrowindex into SELECTEDROWINDEXTABLE.
    endif.
    ENDIF.
    Meanwhile..Let me check why that code does not work.....
    Hope it solve your problem....
    Cheers:)
    Mithlesh

  • Error when creating a request Template In OIM

    Hello all,
    I have a very strange issue with OIM, it is when I try to create a request template, and put a restriction in Organization field, it creates the template and everything is fine. Suddenly, when I try to edit this template, the OIM shows a window with the next error:
    ADF_FACES-60096:Server Exception during PPR, #5 oracle.iam.platform.utils.MinLimitException: size < minimum limit
    I have found in other posts the "solution", It is to change in the database -> RequestTemplate Table -> Template Data Column, the restriction Organization from "the name of the organization" to "the Id of the organization", and restart the OIM, so after that, I can edit the template.
    Here is the issue that I don't understand,... few hours after, I want to edit the same template, and the OIM again shows the same error:
    ADF_FACES-60096:Server Exception during PPR, #5 oracle.iam.platform.utils.MinLimitException: size < minimum limit
    And if I review in the database the table, in the Template Data Column, the restriction of Organization has AGAIN the "Name of the organization".
    And I can again change that to the "Id of the organization", but it's time lost restarting the OIM. Time that I don't have, because Its more than one template.
    Please somebody could help me with this issue.

    Hello,
    I already found the solution to this issue.
    I had to restart the OIM server but also the DataBase and after that, this problem was solved.
    Thanks anyway.

  • Error while Creating Travel Request ..thru TRIP

    Dear all,
    As I am suppose to creat a travel request thru TRIP but i am geting the below error and the msg no..............
    Error: Trip country IN / trip region do not exist in the system (T702O)
    Message no. PTRA_WEB_INTERFACE031
    As Mr. Paulo Vitoriano suggested me to Define Trip Areas, etc......... but my Trip Areas has already been defined and i have checked it also .... but still the error is same ....... so frnds pls tell me wat else may be the problem....
    I read thred Error while Creating Travel Request ..thru TRIP which is posted by prasanth but what they suggested i maitained already but still i am facing same problem could you pls suggest me where i missed.
    Waiting for Reply.
    Regards,
    Nagaraju

    Hi,
    Please check the following:
    1. Just check have you assigned country India to the trip provision variant you have created.
    2. Just check whether you have assigned the trip provision variant correctly to the respective country.
    Regards,
    S.Srikanth

Maybe you are looking for

  • I have a question so help me out

    Yeah so anyway, in itunes i like have these folders but when i try to "drag" the music or song or whatever into the folder it doesnt work. why. thanks

  • Report for cogs

    Hi Experts Can i have a report in which it shows COGS with quantity for a selected period with each single deliveries Thanks

  • Adobe Photoshop Elements 12.1 update

    I just downloaded the latest version of Photoshop elements last evening 5/2/2014. I got a message saying I had an update. I did the update and got an error code U44M1P2001 after update to Photoshop Elements 12.1. I can't find where to try the update

  • Photoshop layers do not display in Aperture

    Hi folks. I searched the forum for something on this but didn't find anything. I just opened a JPG in my external editor (PS CS2), made some adjustments, saved and closed. In Aperture, the image (and thumbnail) do not represent the PS image. I have a

  • Repeatedly asked to install Flash 11 on IE 9 Windows Home Premium 64 bit

    From my admin account - I successfully install the latest version of Adobe Flash Player 11.  Everything works fine (in that same admin account) until a system reboot.  Then I receive messages from websites stating that they want me to install Adobe F