How to save 130 length field in SAP BW system.

Hi all,
In my source system  a field contains 130 length.How to represent that field in BW.(I heard this can be Done using RRI ).
If anyone knows please explain the process.
Thanks,
James

Hi James,
Check out this thread,
To increase Infoobject length from 60 chars..
Re: Data-type length
Regards,
Mani
Message was edited by:
        Manikandan  A

Similar Messages

  • ABAP PROXY - how to load a new field into SAP SNC system

    I am also curious about the proxy process. Please let me know if you know of a post that has mentioned this before.
    We have to customize our Delivery Schedule Notification proxy. I already regenerated the standard one into a Z proxy name. I already put in my custom code to load Z fields into a Z table.
    Here is my new problem. The users wants more additional fields.
    Here is the standard proxy generated layout for this structure:
    /SCA/BIF_S_DELIVERY_SCHEDULE
    CONTROLLER
    ID
    TYPE_CODE
    CREATION_DATE_TIME
    BUYER_PARTY
    VENDOR_PARTY
    BILL_TO_PARTY
    NOTE
    ITEM
    Here is the new proxy generated layout for this structure:
    ZDELIVERY_SCHEDULE_NOTIFICATIO
    CONTROLLER
    ID
    TYPE_CODE
    CREATION_DATE_TIME
    BUYER_PARTY
    VENDOR_PARTY
    SUPPLYING_VENDOR
    BILL_TO_PARTY
    NOTE
    ITEM
    Notice that SUPPLYING_VENDOR is the new field. VENDOR_PARTY is already loaded into the system. How can I get SUPPLYING_VENDOR loaded into the database?
    Thank you in advance for your assistance.
    Edited by: DAVID CRAIG on Jul 29, 2009 2:16 PM

    Hello.
    Thank you for the information.  I need to clarify my situation.
    I understand there is a PROVIDER CLASS.  Within that PROVIDER CLASS there is a METHOD.   Inside that METHOD there is a place for me to put my code in.  I have already done that work for a previous requirement.  I moved Z fields to a Z table.
    My new requirement has a field SUPPYING_VENDOR that was inserted into one of the SAP structures.  It was placed next to VENDOR_PARTY.
    Here are my steps of execution:
    1.  Go to transaction /N/SCA/ICH_S (SNC Supplier View)
    2.  Click on RELEASE
    3.  Click on RELEASE OVERVIEW
    4.  Click on GO
    5.  Click on DETAILS
    6.  Click on the SHIP-FROM LOCATION tab
    The SHIP-FROM LOCATION field is currently being populated by the VENDOR_PARTY field from the proxy.  This is done automatically by SAP.
    1.  How do I find the table and field name for that field?  This is in the Supply Network Collaboration screen, not normal SAP transaction.
    2.  How do I get that SUPPLYING_VENDOR data to populate SHIP-FROM LOCATION instead of VENDOR_PARTY?

  • How to check the OSS note in SAP Client system ?

    Hi all
    I just have a small question ... how do we check whether an OSS note is applied in the SAP client System or not ?
    Please let me know..
    Thanks
    Mallikarjun

    Hi
    1) One way is checking the version and support pack applied.I.e,
    On the main SAP screen > Systems > Status > Check details of the "Component version".
    2) STMS > Double click on the system you need to check > Check the status of your request.
    Nadini

  • How to see my z programs in sap file system

    hello everyone
    my Z programs are deleted due t some server problem from  my  sap ecc 6.0 system  is there any way to  get   my programs from sap file system 
    if yes then  where  exactly in windows folder my zprogramms are stored.......

    >
    elinuk wrote:
    > my Z programs are deleted due t some server problem from  my  sap ecc 6.0 system  is there any way to  get   my programs from sap file system 
    If your Z Programs are present in other server viz., QAS / PROD, then you can import the programs to your DEV server.
    if yes then  where  exactly in windows folder my zprogramms are stored.......
    I am not sure about programs associated to unreleased transport requests (TRs). But when you release your TR, the data gets stored in COFILES & DATAFILES in the transport directory (DIR_TRANS) of the app server.
    Hope this helps.
    BR,
    Suhas

  • How can we trigger the notification from SAP backend system to SMP3.0.

    Hi All,
    Can any one help me to know is there any standard approaches available to get notification from SAP backend system to SMP3.O server after any event that has been triggered.
    Any of suggestion related to above will be helpful.
    Thanks,
    Anjali

    Hi Ekansh,
    I have few more question regarding push notification from backend.
    Refferd Link:-http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/40ab6d83-b7b8-3010-65bc-d7a08f0f35f3?QuickLink=index&…
    Pushing Notifications Made Easy!!! : Push a Notification
    Have perform all the steps till creating RFC Destination to mobile platform by creating a new push service.
    I just wanted to have a clarity on target host that we are specifying should also have SMP3.0 server installed???
    Actually I am using http listener downloaded from membrane site which is running on that target host machine.
    But I am unable to get any response in my listener.
    Even wanted to know the necessity of exchange of certificate for SSL Connection.
    SMP server Certificate exchange with SAP Backend and SMP server certificate exchange with HTTP Listener????
    Because currently I am trying to have a notification from SAP Backend directly to HTTP Listener without having SMP server.
    Can u please correct me where I am going wrong.
    Thanks & regards,
    Anjali Agrawal

  • How to save the edited fields in ALV list

    Hi
    hope you could help me find a solution, I made my fields editable in ALV grid display as you can see in the code ZID_NUM, ZLAST_NAME and ZMIDDLE_NAME is editable..
    an example scenario would be if I execute the program it will show me 5 lines, all the fields can be edited by the user...(example he edited all data in the result).  When he press save, it will automatically update the ztable (ZMEMPLIST in this case). How do you go about the saving?
    thanks!!
    select * from zmemplist client specified
        into corresponding fields of table it_ztable.
    it_fieldcat-fieldname = 'ZID_NUM'.
    it_fieldcat-seltext_m = ' ID Number '.
    it_fieldcat-col_pos     = 1.
    it_fieldcat-input = 'X'.
    it_fieldcat-edit = 'X'.
    append it_fieldcat to it_fieldcat.
    clear  it_fieldcat.
    it_fieldcat-fieldname = 'ZLAST_NAME'.
    it_fieldcat-seltext_m = ' Last Name '.
    it_fieldcat-col_pos     = 2.
    it_fieldcat-input = 'X'.
    it_fieldcat-edit = 'X'.
    append it_fieldcat to it_fieldcat.
    clear  it_fieldcat.
    it_fieldcat-fieldname = 'ZFIRST_NAME'.
    it_fieldcat-seltext_m = ' First Name '.
    it_fieldcat-col_pos     = 3.
    it_fieldcat-input = 'X'.
    it_fieldcat-edit = 'X'.
    append it_fieldcat to it_fieldcat.
    clear  it_fieldcat.
    call function 'REUSE_ALV_GRID_DISPLAY'
      exporting
        i_callback_program       = sy-repid
        it_fieldcat              = it_fieldcat[]
        i_callback_user_command  = 'USER_COMMAND'
        i_callback_pf_status_set = 'SET_PF_STATUS'
      tables
        t_outtab                 = it_ztable.
    *&      Form  user_command
          Handling custom function codes
         -->R_UCOMM      Function code value
         -->RS_SELFIELD  Info. of cursor position in ALV
    form user_command  using    r_ucomm like sy-ucomm
                      rs_selfield type slis_selfield.
      case r_ucomm.
        when 'SAVE'.
    endform

    Hi Lawrence,
    Include follwoing code on your user command for 'SAVE'.
    *& Form user_command
    * Handling custom function codes
    * -->R_UCOMM Function code value
    * -->RS_SELFIELD Info. of cursor position in ALV
    form user_command using r_ucomm like sy-ucomm
    rs_selfield type slis_selfield.
    case r_ucomm.
    when 'SAVE'.
          DATA ref1 TYPE REF TO cl_gui_alv_grid.
          CALL FUNCTION 'GET_GLOBALS_FROM_SLVC_FULLSCR'
            IMPORTING
              e_grid = ref1.
          CALL METHOD ref1->check_changed_data.
             ...............  " your action
         * endform
    Hope this will sovle your query.
    Pratik Vora

  • How to save PDF with fields so someone can fill out form and send it to printer

    Using Adobe Acrobat X for Mac, I built a pdf template with fields for
    sending an assortment of Business Card files to the printer to print.
    How do I save the file so my brother/client can start typing in different
    names, job titles, and contact info and send them to a printer.
    Thanks,
    jsorlean

    Create your form.
    go to advanced menu
    choose the item about Reader Rights
    when open set what you want Reader to be allowed to do.
    Once set and saved the can fillout, save, email but they can not change the actual form itself just the contents they added.
    Not there is a cap of 500 hundred instances per different PDF.
    (Please note information is given by an Experienced User of Acrobat. I am not an employee of Adobe.)

  • How to display/create Local field in SAP query

    HI All,
    I'm new to abap query. I have to include a local field in the existing query. I know through SQ01->Edit->Local field we can display the Local fields, but the options under Local Fields menu option are disable even in change mode of Query.
    So, later through SDN found that, I have to Switch On the short names menu option. Even the sub-options in Short Names are disabled.
    Can any body please let me know how can we display the local fields to the change the formula and how can we create the new local fields in the existing qeury.
    Hope I'm able to explain my issue clearly.
    Thanks in advance.

    You can create the local fields in the "Select Field" screen. (Third screen after "Title, Format" and "Select Field Group") This option is disabled on the other screens.<br />
    <br />
    <i>Reference : <a class="jive-link-external" href="http://help.sap.com/saphelp_NW70EHP1/helpdata/en/d2/cb4186455611d189710000e8322d00/frameset.htm" target="_newWindow">Defining Local Fields</a> in <a class="jive-link-external" href="http://help.sap.com/saphelp_NW70EHP1/helpdata/en/d2/cb3efb455611d189710000e8322d00/frameset.htm" target="_newWindow">SAP Query</a>.</i><br />
    <br />
    Regards,<br />
    Raymond

  • How to load 256 length field from r/3 to BW & How to report in Bex Browser

    Hi,
    We have a field consists of 256 length in r/3 system.
    I want to load from R/3 -> BIW -> Bex Reporting.
    What are the steps to be taken in R/3 Side.
    What are the steps to be taken in BW side.
    What are the steps to be taken for Bex.
    Thanks,
    Madhu

    MAdhu,
    If you want to extract the data from R/3 to BW fro which the field length is 256 then its not possible directly.
    Either you need to breeak up the same filed into 5 Infoobjects since the maximum length of the infoobject is 60 or else you need to maintain a conversion routine... And the remaining process of loading the data from R/3 to BIW is the same.
    Hope this helps...
    Gattu

  • How to hide a mandatory field in sap standard webdynpro via Enhancement

    Hi,
    I know to hide a column or UI via enhancement. But if we hide a field via this approach which requires an input we will still get an error message to make an entry.
    I am trying to make changes in travel management e.g in FITE_VC_REVIEW webdynpro component. In REVIEW_VIEW in Flight Info table I want to hide columns like arrival time, arrival date. However in current scenario these fields are required to be filled in. If left blank we get an error message while saving or sending request.
    Kindly guide me where and how to make changes to remove these column fields.
    Regards,
    Madhvika

    You can remove the UI elements from teh design itself by right clicking on it and slecting remove element.
    but still the condition for checking the mandatory field swill be there in the code so for that you need
    to write teh code to set some values to those attribute for passing the condition for validation
    thanks
    sarbjeet singh

  • How to save the own fields value in a Database

    Hi all
    We create some customers fields with eewb fields for Service Order, but the value we enter in it, are not saved into the database table CRMD_ORDERADM_H.
    Where and what we have to do to commit the values in the database?
    We are working with CRM2007 WEB UI.
    Best Regards
    Edited by: Luis Felice on Nov 18, 2008 9:14 PM

    Did you check that your new fields have been created in table CRMD_ORDERADM_H?
    If yes, then check the structure of context node BTAdminH in TX GENIL_MODEL_BROWSER.
    If the fields popup in both, then everything with the EEWB should have worked fine.
    The EEWB creates an include structure for the table. This structure is also include in all API (like the CRM_ORDER_MAINTAIN). Additionally it creates function modules that are called by the API and handle the additional fields. Thus you do not have to do any additional commit or coding.
    In case everything is in place and it does not work, you should probably open an OSS. Otherwise let the wizard in the EEWB create the extension again.
    cheers Carsten

  • How to View Transport Log in DEV SAP Portal System

    Hi All,
    Kindly help me by giving me the path of where is the Import, Export and Transport Log maintained in SAP Portal.
    And is it posible to view the Log of other systems from DEV system? If yes then how.
    Thanks in Advance.
    Regards,
    Disha.

    Hi,
    Please navigate to usr/sap/trans/CMS/log to view logs.
    Alternatively in the CMS, you can click on "Go to History" which will display all previous transports. You can see the details from there.
    Thanks

  • User Status field on SAP Project System

    Hi,
    When view a project definition via tranx CJ20n, I see a field called User Status on tab 'basic data'.  When I do F1 to get the technical name, it referenced a field from the structure CNJ_STAT-STTXT_EXT.  How can I find out the table where the value for User Status are stored.
    Please advise.
    Thanks.

    check the below tables.
    TJ30   User Status
    TJ30T   Texts for User Status
    Field TXT30 Object status

  • How to save ADOBE form , for trasporting to other system ?

    Hello.
    Is any body know how i can to save the ADOBE form , for transport it to other R3 system or upload to file and download in the other project ???
    Thank's in advance

    Pl execute the program "RSTXPDFT4"
    Before that, execute ur script and the spool will be generated .rite?
    Now, after execution of the above program, give the spool number of ur spool generated, and tick the option dwnload the pdf file and then give the location of the file where u want to save... Then execute it. the pdf file will be generated and then stored in ur particular location..
    Pl reward if helpful...

  • How to save dashboards in mobile format in local system?

    I wanna save my dashboard for mobile. I wanna the file in local system how to achieve this?

    Hi Riaz,
    I am assuming that by local system you meant your desktop/laptop machine.
    I don't think you may be able to save the "mobile version" of the dashboard on local machine as there is no option to do so. You can only save he mobile version to the platform.
    You may however save the dashboard in desktop version on the local machine and preview it for mobile screen.
    Do revert if you need any more information.

Maybe you are looking for

  • TS3988 How do I set up an iCloud account without a Mac product?

    I have installed iCloud control panel on my Windows 7, and have created an Apple ID, but am told that it is not an iCloud account. I don't have another Apple product without a current iCloud account. Also, this account will be used to consolidate cer

  • Benifits of XSLT Mapping.

    Hi Experts, Benfits of XSLT Mapping and when it is used.

  • How do you can import a pdf forms file in FormsCentral [pdf to fcdt]?

    How do you can import a pdf forms file in FormsCentral [pdf to fcdt]

  • System landscapes in SLD

    Hello, Does any one have experience using other landscape definitions in the SLD? What can be the use in XI. Will it be possible to use systems from different landscapes via this way in the central sld? Thanks, Emile

  • Error BlazeDS, Flex 4

    I am developing a project using JEE +  blazeds + Flex. I am having some troubles passing some objects from JEE to Flex. It seems that blazeds cannot translate the objects (EJB Entities) that I am sending to Flex. When I try to send them there is no e