Jump to CATS_DA (field PERNR)- Assignment Details !

Hi,
I need to create a jump from my query in BI to transaction CATS_DA in R/3 ( the underlygin table for this transaction being CATSDB).
I need to jump from 0EMPLOYEE from my BI report to PERNR in the transaciton CATS_DA.
I have created the jump in RSBBS. But i am only able to jump to the initial screen of the transaction CATS_DA. I need to pass the 0EMPLOYEE from which i am jumping to R/3 ....to PERNR in R/3.....
What should be the assignment details to pass the value ?????
Need it urgently
Thanks
Shalabh Jain

Hi,
please have a look at this: http://help.sap.com/saphelp_nw04/helpdata/en/a2/9b548d979de04180d15b5a55aa94aa/frameset.htm
and additionally at this: https://websmp102.sap-ag.de/~form/handler?_APP=01100107900000000342&_EVENT=REDIR&_NNUM=1053310&_NLANG=EN
and this: https://websmp102.sap-ag.de/~form/handler?_APP=01100107900000000342&_EVENT=REDIR&_NNUM=363203&_NLANG=EN
but anyway, in case of r/3, use table field and enter the name of the field, the dataelement, the domain and the parameter id of the target field.
regards
Siggi

Similar Messages

  • RSBBS Jump Query -- Assignment Details

    Hi , I went RSBBS Jump Query --> Assignment Details --> InfoObject is Company Code so I (select type "Variable") --> Field Name I tried both Info Object Name("0comp_code")and Variable of Infoobject "0comp_code" is "ZS_CC" Manual entry variable for choosing NYLP OR NYPLP So i tired putting that in Field Name --> Selection Type (E Single Value). But it did not work and reciever query still show me the both NYLP AND NYPLP COMPANY CODE. reason I think of is use of Structure Company code in Receiver query and not the same Variable ("0comp_code")ZS_CC which is used in Sender query. I cannot change the same beacuse of reconicillation issue between two report
    Please let me know if I am doing any thing wrong or is there any other way to resolve this quick.
    thanks
    soniya

    I didn't understand your question, i think you can do this way.
    RSBBS Assign your Sender Query and receiver query. In Receiver query i think you have company code then create a variable and should be replacement path and  specify the sender query In the next screen in the query option. Then you should be getting only those values for that company code. When u drill down. It should work, wait for others opnion.
    Regards
    Kunal

  • Jump Assignment Details Question

    Sender Query : Fiscal Year, Posting Period,
    Receiver Query : Calender Year, Calender Month
    <b>Assignment Details</b>
    Fiscal Year - Setting - Variable - Technical Name of Calender Year Variable.
    Posting Period- Setting - Variable - Technical Name of Calender Month Variable.
    Question : Can I pass the input values of Fiscals on Sender to Cals on Receiver Query this way??
    Am I doing wrong...do correct me ?
    Does it even work?

    Hi,
    basically this will not work. In the exit you need to derive the cal month and year from fisc year and period to that to work.
    kind regards
    Siggi

  • Assignment details in RRI

    Hi ,
    I am creating report in BI7, I am creating Jump Target on this Report to R/3 report.
    Here, The values which are in BI has to be populated in R/3 report depending upon one charcteristic field in BI.
      So, to populate the values, I have given Assignment details for the Infoobjects for which values has to be passed to  R/3.
    So When I considered "Variable" in Type , it is giving error the target cannot be found and it is going to R/3 report also
    So I tried with Table field then it is just showing "Starting the receipient program" with out opening the R/3 report.
    So, What type I have to consider in Assignment details .. And what should be done to populate the values in R/3 report from BI.
    Please help me,
    Thanks,
    Jasswantha

    Hi,
    please have a look at this: http://help.sap.com/saphelp_nw04/helpdata/en/a2/9b548d979de04180d15b5a55aa94aa/frameset.htm
    and additionally at this: https://websmp102.sap-ag.de/~form/handler?_APP=01100107900000000342&_EVENT=REDIR&_NNUM=1053310&_NLANG=EN
    and this: https://websmp102.sap-ag.de/~form/handler?_APP=01100107900000000342&_EVENT=REDIR&_NNUM=363203&_NLANG=EN
    but anyway, in case of r/3, use table field and enter the name of the field, the dataelement, the domain and the parameter id of the target field.
    regards
    Siggi

  • GET PERNR header details

    Hello all,
    I understand the basic concept of the GET PERNR command but I wanted to clarify something.
    In the logical database PNP, after the GET PERNR event, does the 'header' information in the structure PERNR contain the combination of the person's 'latest' infotype records?
    For example:
    - someone has a current surname of SMITH but had a previous surname of JONES in IT0002
    - will the field PERNR-SNAME contain SMITH?
    - will their PERNR-WERKS and PERNR-BTRTL contain their current values
    Also, are the selection dates PN-BEGDA and PN-ENDDA considered when determining these 'latest'  PERNR values or is the end date '99991231' assumed.
    Many thanks in advance,
    Keiron.

    See the following example:-
    REPORT zemployee.
    TABLES: pa0000.
    DATA:
    go_employee TYPE REF TO cl_pt_employee,
    gd_infty TYPE infty,
    gt_infty TYPE tim_tmw_itlist_tab,
    gt_result TYPE tim_blp_request_tab,
    gd_result LIKE LINE OF gt_result,
    go_data TYPE REF TO cl_pt_td_itnnnn,
    gs_prelp TYPE prelp, " HR Master Data Buffer
    gs_p0009 TYPE pa0009. " HR Master Record: Infotype 0009 (Bank
    " Details)
    FIELD-SYMBOLS:
    TYPE ANY.
    PARAMETERS:
    p_pernr TYPE pa0000-pernr DEFAULT '00900222',
    p_begda TYPE begda DEFAULT syst-datum,
    p_endda TYPE endda DEFAULT syst-datum.
    START-OF-SELECTION.
    go_employee ?= cl_pt_employee=>get_employee( p_pernr ).
    CALL METHOD go_employee->get_master_data
    EXPORTING
    im_begda = p_begda
    im_endda = p_endda
    IMPORTING
    EX_I0000 = " infotype 0000 = Actions
    EX_I0001 = " infotype 0001 = Organizational Assignment
    EX_I0002 = " infotype 0002 = Personal Data
    EX_I0007 = " infotype 0007 = Planned Working Time
    EX_I0008 = " infotype 0008 = Basic Pay
    Using this method you can access any infotype(s)
    APPEND '0009' TO gt_infty. " Bank Details
    APPEND '0010' TO gt_infty. " Capital Formation
    CALL METHOD go_employee->if_pt_employee~get_infotypes
    EXPORTING
    i_itlist = gt_infty
    i_fromdate = '20000101'
    i_todate = syst-datum
    I_FILTER =
    i_noauthcheck = ' ' " do authority check (if required)
    IMPORTING
    e_result = gt_result.
    E_RETCD =.
    LOOP AT gt_result INTO gd_result.
    go_data ?= gd_result->data.
    Get infotype in semi-transparent form
    gs_prelp = go_data->if_pt_td_infotype~get_prelp( ).
    Convert: semi-transparent -> transparent infotype
    CALL METHOD cl_hr_pnnnn_type_cast=>prelp_to_pnnnn
    EXPORTING
    prelp = gs_prelp
    IMPORTING
    pnnnn = gs_p0009.
    ENDLOOP.
    Print-Out infotype data
    DO.
    ASSIGN COMPONENT syst-index OF STRUCTURE gs_p0009 TO .
    IF ( syst-subrc NE 0 ).
    EXIT.
    ELSE.
    WRITE: / .
    ENDIF.
    ENDDO.
    END-OF-SELECTION.

  • Portal Master-detail form how to auto assign detail record sequence number

    Portal Master-detail form how to auto assign detail record sequence number.Please help me?

    You can just read the following section
    Can I specify a sequence number generator as the default value for a form column?
    Yes. Enter the following in the "default value" field for the column:
    #<schema name>.<sequence name>.nextval
    where <schema name> is the name of the schema containing the sequence, and <sequence name> is the name of the sequence. The entry is preceded by a "#".
    For example, if the schema name is "SCOTT", and the sequence name is "CUSTOMER_SEQ", the default value entry is:
    #SCOTT.CUSTOMER_SEQ.NEXTVAL
    same way you can do for master - detail form.
    for more information on forms please refer the following URL.
    http://otn.oracle.com/products/iportal/htdocs/portal_faq.htm#BuildingApplications
    hope it helps.

  • No account assignment details were adopted - Confirm Goods / Services

    Hey Group,
    I have an issue:  I'm in the Confirm Goods /Services.  When I attempt to 'Start' a search for Confirms Goods Receipts/Services Performed, I get the message:  No account assignment details were adopted.  Do any of you know why I might  be getting this message?
    If helpful will be provided full points.  Thanks.
    SKumar

    Hi Kumar,
    This is because if you click on Extended Search screen in Confirm Goods/Services screen, Account assignment Category was picked (Something like CC,OR or AS) but in the next field the value of Account assignment Category was not put in.
    If you are pickingup Account assignment category please put a value of it, else do not select it.
    Please award points if your issue is resolved with this.
    Thanks,
    Venkat

  • RRI. problems whith Assignment details

    Hello,
    When I configure Assignment details for RRI (tran. RSBBS) I change field type from Generic to Delete, then I close a window and press Save. When I open a window again the field has type Generic. Do I do something wrong or there is any mistake?

    I found the solution.
    Note 1042673 - Error: Assignment details in the report-report interface

  • RSBBS - Assignment  Details

    Hello,
    I am developing RRI from Sender to Reciever.Target has a variable on EX: ORDER.And the what i would like is when the user from the Sender query clicks on Order > Go to >reciever query can actually se all teh details without putting any additional values.
    My concern here is in Assignement detail, do i need to give all types and if so why.Or do i need to just give type for the one i ould like the user to jump to. And in my case what should i be using Generic or InfoObject.I have read the link thats posted in reply to this question but still couldnt get an idea.Can someone please help, points shall surely be assigned.
    Thanks,
    Ronit.

    Dear Ronit,
    I'll tell you the concept of RRI ok?
    you have a report1(summary) and a detailed report2. Example In Report1 , you have custid, total purchase amount.(summary report)
    In report2, you have detailed transactions(at line item level) for a given cust id. i.e; input to this detailed report will be the custid and the report will display all the transactionf for that cust id.
    Now, the scenario is , from the summary report, all custids with total purchase amount will be displayed? When you right click one of the custid and jump to the detailed report, you should be able to see the detailed transactions for that custid.
    Now lets see how it works.
    Here sender is report1, receiver is report2. One of the conditions to link 2 reports using RSBBS is that both the sumary and the detailed level reports should have a comon characteristics to link. Here we custid in both reports.
    So, In RSBBS, you mention sender as report1, receiver as report2 and in the other tab, you just mention what kind of report( i remember you may need to mention as BW report). I dont remember(plz. check).
    Once this is done, run the summary report Report1, right click any of the custids you will see in the context menu-> drill down-> jump to report2.select that. now u will see detailed transactions for that selected custid.
    Technically, how this works is: When you right click a custid and select to jump to the detailed report, that selected custid is passed as a parameter to teh SQL to the detailed report, hence the detailed report knows for which custid , it is supposed to display the data. This is a typical example of a dynamic query, where in the values of the parameter to the query is passed during runtime.
    Got it??
    Get back to me if you have any questions.
    Thanks

  • Invalid Cursor error when modifying Assignment details - Transfer workflow

    Hi,
    We're trying to submit a Transfer transaction but if we try to modify any field in the Assignment details screen, we're getting a system error, and sometimes we see ORA-01001: invalid cursor error. We have already checked the database objects (procedures, packages, triggers) and we don't see any code which has an invalid use of a cursor. Does anyone have a clue on the cause of this error?

    This is just a guess,
    all you cursors are being opened regardless of any condition, for example;
    OPEN CUT(:NEW.LAYOUT_NO);
    OPEN DET(:NEW.LAYOUT_NO);
    OPEN ITM(:NEW.LAYOUT_NO);
    OPEN LOT(:NEW.LAYOUT_NO);
    OPEN DTN(:NEW.LAYOUT_NO, :NEW.CUT_NO, :NEW.NOTE);UNA however is opened after a condition;
    IF DTN%NOTFOUND THEN
      /** start --added for cha 2011-3172 6/14/2011 **/
          OPEN UNA(:NEW.LAYOUT_NO, :NEW.ACCOUNT_NO);All cursors arel however closed regardless, i.e. they are all assumes to be open;
      CLOSE CUT;
      CLOSE DET;
      CLOSE DTN;
      CLOSE ITM;
      CLOSE LOT;
      CLOSE STAT;
      CLOSE UNA;So I think you are closing the UNA cursors wen it is in fact not open.
    So, move the "CLOSE UNA;" line of code to before the END IF; on line 278, since that is when it will definitely be open.

  • Transporting RRI Assignment Details

    Hi ,
    the following is the method i use to transport RRIs
    a) Rsbbs
    b) Select Sender query ,press enter
    c) Select reansport manually from the environment tab
    4) Change package and attach it to a request
    In the destination system i'm able to find the jump but the assignment details for this is not transported. All are reset to "generically"
    Help would be appreciated.
    Thanks and regards.

    I found the solution.
    Note 1042673 - Error: Assignment details in the report-report interface

  • Field values in detail line being cutoff

    I am using Crystal Reports 2011.
    I have a report created in Crystal Reports and is being populated by a Dataset.
    The report is displayed in a CrystalReportViewer in an ASP.Net page.
    I am finding that sometimes the string data  in fields in the detail line are being cutoff.
    For example:
    There is a column in the report called Status.
    The table field has a value of Started1234567.
    When the report is displayed in CrystalReportViewer, the Status column only shows Started12 in the detail line.
    Even when the report is exported to a MS Excel .xls file and you click on the cell with that value, it still only has a value of Started12 instead of Started1234567.
    I am not concerned that the value is cutoff in CrystalReportViewer.
    But it would be better to be able to see the whole value when the report is exported to a file, especially to a MS Excel .xls file.  Is there a way to keep the value from being cutoff when being exported?
    Sincerely,
    Keith Jackson

    Hi,
    Setup the font size is smaller i.e based on your requirement..
    Format the field and on the paragraph tab put a small value in the Indentations Left box.  I use 0.1 cm, but it depends on your settings in Page Setup..
    As of now these are the possible ways....
    Refer this link:  Data gets cut off after 20 characters
    Thanks,
    DJ

  • Master Detail Form - How 2 update a field in the Detail form using a query?

    Hello,
    I have a master detail form with, each master record having a fixed(6) number of detail records. One of the fields in the detail record is the PART_DESCRIPTION field. I am trying to update this field by querying Table_X. TABLE_X is in the format of (desciption id, description). Description id runs from 1 to 6.
    When the form displays, the PART_DESCRIPTION field for the 6 detail records needs to be automatically populated with the six values of description stored in Table_X. How can this be done?
    Tried using session storage objects, but made no headway.
    Would greatly appreciate pointers on how to go about doing this.
    Thanks.
    Dev

    If you are on a Portal Version lesser than 3.0.9.8.3, then please try the following to populate
    the PART_DESCRIPTION field.
    Steps:-
    1> Edit the form and go to the Additional PL/SQl section and put the following code in the
    "...after displaying the page area" :-
    declare
    type t_vc_arr is table of varchar2(4000) index by binary_integer;
    l_arr_desc t_vc_arr;
    l_form_name varchar2(200);
    l_form_state varchar2(500);
    begin
    l_form_name := p_session.get_module().get_name();
    l_form_state := p_session.get_value_as_varchar2(
    p_block_name => 'MASTER_BLOCK',
    p_attribute_name => '_FORM_STATE'
    if l_form_state = 'QUERY_AND_SAVE' then
    select description
    bulk collect into l_arr_desc
    from <schema>.table_x;
    htp.p('
    <script>
    var descArr = new Array();
    var Fidx = 1;
    var formObj = document.WWVM'||p_session.get_id()||';
    var fieldName = "'||l_form_name||'.DETAIL_BLOCK.PART_DESCRIPTION.0";
    for i in 1..l_arr_desc.count loop
    htp.p('descArr['||to_char(i-1)||']="'||l_arr_desc(i)||'";');
    end loop;
    htp.p('
    for (var i=0; i < formObj.length; i++){
    if (formObj.elements.name == fieldName+Fidx){
    formObj.elements[i].value = descArr[Fidx-1];
    ++Fidx;
    htp.p('</script>');
    end if;
    end;

  • CProjects - Adding a new field to the detail screen of object link

    Hi All,
    I've a requirement of adding a new field to the detail screen of object link. But the field is a combination of 3 other standard fields.
    Please let me know how could i realise this functionality?
    Thanks in advance.

    Hi Srini,
    Thanks for your Reply
    I have kept 01 against the field BSEG-AUGDT and selected the preselect check box also.
    But still that field is not visible in the dynamic selection screen.
    Thanks
    Ajay.D

  • Error while updating the Assignment details using 'hr_assignment_api'

    An exception message is thrown while updating the assignment details through 'hr_assignment_api.update_emp_asg'.
    The message is 'ORA-20001: HR_FLEX_VALUE_MISSING: N, COLUMN, ASS_ATTRIBUTE6, N, PROMPT'.
    Even though a valid value is being passed to the segement,the error is thrown.
    I have tested the API in one instance and it is working fine. Recently I have migrated the codes to nother instance and encountered this error. The only difference is that in the newer instance, the segment is mandatory.
    One interesting thing is that, When I update the Assignment through application it is successfully saving the record. Then if I use the API to correct the Assignment, it is working fine. The API is not able to update only when the mandatory segment is null.
    Please help
    Thanks in advance
    Kumar

    Pl post details of OS, database and EBS versions, along with HR RUP level. It may be a bug, as outlined in MOS Doc 429169.1 (When Calling the Assignment API To Update Position, It Errors in Required Segment)
    HTH
    Srini

Maybe you are looking for

  • Drag and drop to Adobe Illustrator CS4 problem

    Hi! It's about one week that I've got a problem with drag & drop images (and also other files) in Illustrator. The problem is persistent for every kind of file and also when i drga&drop from Adobe Bridge i've got the same problem. Please, someone has

  • Import video into imovie ipad

    hello to all, I saw the presentation about the Imovie and looks very nice, but, before buying the app for the ipad, I want to be sure that I can import a video recorded from a SONY Camera into the Imovie/ipad . Do anyone has the same situation?, is i

  • IMac G5 wont stay asleep

    I have just recently restored my iMac and am having the same issue with sleeping as I did last christmas when I got it; It wont stay asleep! I called AppleCare last year and they had me delete some com.autowake. something something in the system fold

  • No infinity - told by BT could watch app through T...

    I was told that as cant receive infinity in my area I would be able to download the app on iPhone then watch through TV. Got the app already had the cable required but doesn't work. Help anybody

  • Seagate Wireless Plus / Ipad and Sky Go?

    I'm thinking of buying a Seagate Wireless Plus device for use with my iPad. Does anyone know if you can use this device to store and watch content from Sky Go? (I already have a Sky Go Extra subscription but no room on the iPad!)