How to append fields to the structure rfposxext........

hi all,
i have to append one field i.e.
Credit Representative Group: (Table: KNKK; Field Name: SBGRP)to the standard structure 'rfposxext'.
can anybody suggest me,how to do it?
thanx in advance.

Hi,
Are you talking Web Dynpro? There is a seperate forum for that.
If you are, I believe it is not possible to change structures that you import as a model. (standard structure?)
You can create your own custom structure that contains the model structure + the field you require.
I hope it makes sense.
Good luck!
Roelof

Similar Messages

  • How to set values to the structure containing a node with cardinality 0..n

    Hello.
    I 'm trying to set values for the node with cardinality 0..n. The node type is "Fields".
    <xsd:complexType name="Field">
       <xsd:sequence>
          <xsd:element name="fieldCode" type="xsd:string"></xsd:element>
          <xsd:element name="displayValue" type="xsd:string" minOccurs="0"></xsd:element>
       </xsd:sequence>
    </xsd:complexType>
    <xsd:complexType name="Fields">
       <xsd:sequence>
          <xsd:element name="field" type="tns:Field" minOccurs="0" maxOccurs="unbounded"></xsd:element>
       </xsd:sequence>
    </xsd:complexType>
    I  need to set several values for the element "fieldCode" but it has cardinality 0..1 and BPM does not allow it but I did not find any option about how to set values for the structure of type "Fields". Could you help me?
    Best regards,
    Timur Semenchuk

    Hi Marcus,
    If there is no way you could change the cardinality of the node, and thus it can contain 0..n items, I think you should create-and-add a new element programmatically.
    Since the collection can contain zero elements, I would add a 'new' button, which upon clicking adds one new element via:
    IYourNodeElement yourNodeElem = wdContext.nodeYourNode().createYourNodeElement();
    wdContext.nodeYourNode().addElement(yourNodeElem);
    Hope this explains a bit!
    Best,
    Robin van het Hof

  • Reg:How to add fields to the scripts in detail

    How to add fields to the scripts in detail.
    Plz give me one example help me out.

    Hi
    add fields to the scripts by sending that field between  two &s.
    for example if u want to add lifnr of lfa1 table then pass field like this.
    &wa_lfa1-lifnr&.here wa_lfa1 is work area for internal table it_lfa1.
    if name1 then &wa_lfa1-name1&
    in this way you can add fields to the script under any window.
    i am sending one example program for scripts.
    &--structure declaration--
    TYPES:BEGIN OF ST_LFA1,
          LIFNR TYPE LFA1-LIFNR,
          NAME1 TYPE LFA1-NAME1,
          LAND1 TYPE LFA1-LAND1,
          ORT01 TYPE ORT01,
          REGIO TYPE REGIO,
          END OF ST_LFA1.
    TYPES:BEGIN OF ST_EKKO,
          EBELN TYPE EKKO-EBELN,
          BUKRS TYPE EKKO-BUKRS,
          AEDAT TYPE EKKO-AEDAT,
          ERNAM TYPE EKKO-ERNAM,
          BSTYP TYPE EKKO-BSTYP,
          LIFNR TYPE EKKO-LIFNR,
          END OF ST_EKKO.
    TYPES:BEGIN OF ST_EKPO,
          EBELN TYPE EKPO-EBELN,
          EBELP TYPE EKPO-EBELP,
          LOEKZ TYPE EKPO-LOEKZ,
          AEDAT TYPE EKPO-AEDAT,
          MATNR TYPE EKPO-MATNR,
          NETWR TYPE EKPO-NETWR,
          END OF ST_EKPO.
    &--internal table,work area declaration--
    DATA:WA_LFA1 TYPE ST_LFA1,
         IT_LFA1 TYPE STANDARD TABLE OF ST_LFA1,
         WA_EKKO TYPE ST_EKKO,
         IT_EKKO TYPE STANDARD TABLE OF ST_EKKO,
         WA_EKPO TYPE ST_EKPO,
         IT_EKPO TYPE STANDARD TABLE OF ST_EKPO.
    &--data declaration--
    DATA:TOTAL TYPE EKPO-NETWR,
          V_EBELN TYPE EKKO-EBELN.
    data: v_item(20) type c.
    &--parameter for purchase document number--
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.
    PARAMETERS P_PURDOC LIKE V_EBELN.
    SELECTION-SCREEN END OF BLOCK B1.
    START-OF-SELECTION.
      PERFORM GET_DATA_FROM_EKKO.
      PERFORM GET_DATA_FROM_LFA1.
      PERFORM GET_DATA_FROM_EKPO.
    &--grand total--
      LOOP AT IT_EKPO INTO WA_EKPO.
        TOTAL = TOTAL + WA_EKPO-NETWR.
        CLEAR WA_EKPO.
      ENDLOOP.
    &--open form--
      CALL FUNCTION 'OPEN_FORM'
       EXPORTING
        DEVICE                            = 'PRINTER'
        FORM                              = 'Z_50886_VENDOR'
        LANGUAGE                          = SY-LANGU
       EXCEPTIONS
         CANCELED                          = 1
         DEVICE                            = 2
         FORM                              = 3
         OPTIONS                           = 4
         UNCLOSED                          = 5
         MAIL_OPTIONS                      = 6
         ARCHIVE_ERROR                     = 7
         INVALID_FAX_NUMBER                = 8
         MORE_PARAMS_NEEDED_IN_BATCH       = 9
         SPOOL_ERROR                       = 10
         CODEPAGE                          = 11
         OTHERS                            = 12
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    &--write form for header details--
      READ TABLE IT_EKKO INTO WA_EKKO INDEX 1.
      CALL FUNCTION 'WRITE_FORM'
       EXPORTING
         ELEMENT                        = 'HEAD'
         WINDOW                         = 'HEADER'
       EXCEPTIONS
         ELEMENT                        = 1
         FUNCTION                       = 2
         TYPE                           = 3
         UNOPENED                       = 4
         UNSTARTED                      = 5
         WINDOW                         = 6
         BAD_PAGEFORMAT_FOR_PRINT       = 7
         SPOOL_ERROR                    = 8
         CODEPAGE                       = 9
         OTHERS                         = 10
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    &--write form for item details--
      LOOP AT IT_EKPO INTO WA_EKPO.
      concatenate wa_ekko-ebeln wa_ekpo-ebelp into v_item.
        CALL FUNCTION 'WRITE_FORM'
         EXPORTING
           ELEMENT                        = 'ITEM'
           WINDOW                         = 'MAIN'
    EXCEPTIONS
       ELEMENT                        = 1
       FUNCTION                       = 2
       TYPE                           = 3
       UNOPENED                       = 4
       UNSTARTED                      = 5
       WINDOW                         = 6
       BAD_PAGEFORMAT_FOR_PRINT       = 7
       SPOOL_ERROR                    = 8
       CODEPAGE                       = 9
       OTHERS                         = 10
        IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
      ENDLOOP.
    &--write form for vendor details--
      READ TABLE IT_LFA1 INTO WA_LFA1 INDEX 1.
      CALL FUNCTION 'WRITE_FORM'
       EXPORTING
         ELEMENT                        = 'VENDOR'
         WINDOW                         = 'ADDRESS'
       EXCEPTIONS
         ELEMENT                        = 1
         FUNCTION                       = 2
         TYPE                           = 3
         UNOPENED                       = 4
         UNSTARTED                      = 5
         WINDOW                         = 6
         BAD_PAGEFORMAT_FOR_PRINT       = 7
         SPOOL_ERROR                    = 8
         CODEPAGE                       = 9
         OTHERS                         = 10.
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    &--write form for grand total--
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
        WINDOW                         = 'TOTAL'
    EXCEPTIONS
       ELEMENT                        = 1
       FUNCTION                       = 2
       TYPE                           = 3
       UNOPENED                       = 4
       UNSTARTED                      = 5
       WINDOW                         = 6
       BAD_PAGEFORMAT_FOR_PRINT       = 7
       SPOOL_ERROR                    = 8
       CODEPAGE                       = 9
       OTHERS                         = 10
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    &--close form--
      CALL FUNCTION 'CLOSE_FORM'
       EXCEPTIONS
         UNOPENED                       = 1
         BAD_PAGEFORMAT_FOR_PRINT       = 2
         SEND_ERROR                     = 3
         SPOOL_ERROR                    = 4
         CODEPAGE                       = 5
         OTHERS                         = 6
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    *&      Form  get_data_from_ekko
    FORM GET_DATA_FROM_EKKO .
      SELECT EBELN
             BUKRS
             AEDAT
             ERNAM
             BSTYP
             LIFNR
          FROM EKKO INTO TABLE IT_EKKO WHERE EBELN = P_PURDOC.
    ENDFORM.                    " get_data_from_ekko
    *&      Form  get_data_from_lfa1
    FORM GET_DATA_FROM_LFA1 .
      IF NOT IT_EKKO[] IS INITIAL.
        SELECT LIFNR
               NAME1
               LAND1
               ORT01
               REGIO
               FROM LFA1 INTO TABLE IT_LFA1 FOR ALL ENTRIES IN IT_EKKO WHERE
                    LIFNR = IT_EKKO-LIFNR.
      ENDIF.
    ENDFORM.                    " get_data_from_lfa1
    *&      Form  get_data_from_ekpo
    FORM GET_DATA_FROM_EKPO .
      IF NOT IT_EKKO[] IS INITIAL.
        SELECT EBELN
               EBELP
               LOEKZ
               AEDAT
               MATNR
               NETWR
               FROM EKPO INTO TABLE IT_EKPO
               WHERE EBELN = P_PURDOC.
      ENDIF.
    ENDFORM.                    " get_data_from_ekpo

  • Table for checking the appended fields in the standard extractor

    Hello,
    Please let me know the table name for checking the appended fields in the standard extractor.
    Thanks in advance

    Hello,
    From Rsa6 , goto your extractor from there you may get the name of your strucutre
    Go to DD03L and enter this name
    And you get to see all the fields there..
    waiting for your feedback.
    Regards
    Nitin Bhatia

  • Fucntion module to reterieve ANFDT field from the structure RM06E

    hi,
    I need Function module to reterieve ANFDT field from the structure RM06E or is there any other table for this field.
    Regards,
    anitha

    Anitha,
    That looks like the date on which the RFQ is created. What you can do is to get this date from EKKO table for a given RFQ, however you need to check the document category and type to A and AN respecitvely.
    Regards,
    Ravi
    Note : Please mark all the helpful answers

  • How to Identify a table name of a field in the structure

    Hi Guys,
    I have to identify a application table name of a field , the  field is directly mapped with the structure.
    please guide me where the physical data is stored.
    regards
    Vasanth

    HI Vasanth,
    You can select Data Type radio button in SE11 and click on search help F4) ..and provide field name or structure name and then select where Used list option .and select table check box..so that you can find multiple tables wherever this structure is used..
    U can get multiple tables here if this structures is used for multiple tables.So data related to your field will be storing in multiple tables.
    This information may be usefull..
    --Manohar

  • Mapping of    REGUP and REGUH  fields to the  structure FPAYP,FPAYH, FPAYHX

    Hi 
    We use  structure  FPAYP, FPAYH,  FPAYHX  in the DMEE  formats.   Now the  data in the payment run  can be seen in table REGUP  and REGUH.   All  the  payment  related  data    falls into the DMEE  generated xml file  thru  the  structure FPAYP,FPAYH, or  FPAYHX.
    My  question is  how can I  find out  which field   in  REGUP or  REGUH  is  mapped to  which  field in the  3   structures  used in DMEE.  Is there any sap  program.     I  tried  searching,  but  could not find in  sap library.
    Thanks for  your inputs.
    kamala

    Hi
    Sorry to  reply late.
    I am  doing  intermediary  bank in  international payments.
    I   need to get the intermediary bank  BIC  , clearing code   and   bank  name field data  in the DMEE format.  
    Please  tell me  which  structure and field  have  these  three  data elements.
    Thanks
    kamala

  • Problem in finding the field in the structure

    hi,
             i have to find out whether one name is exist as a field name in one structure. how to make this comparison. pls let me know.
                                                                         thanks,
                                                                    mukka.chakradhar.

    SELECT single matnr from dd03l into v_matnr where tabname = 'MARA' and as4local = 'A'.
    check sy-subrc = 0.
    DD03L  table contains all the active status table names with all the fields in the table
    Message was edited by:
            Hymavathi Oruganti

  • Appending fields to the standard table vbak

    I have tried to add fields by the button APPEND Structure .
    Well it opens up a screen for creating a structure but after fillin fields when i try to activate it it gives the foll warnings :
       Enhancement category for table missing
       Enhancement category for include or subtype missing
       Field ZWELCOME does not lie within customer namespace
    Tell me hw do we add the fields successfully to the table at least and then if poss
    also tell hw shall i add them to the standard transaction VA11 so that data can be entered thru this transaction itself .

    Hi,
         Since these are not error and workings only. Will they effect your functionality??? You can still activate the table after appending in the same way you did.
    While creating a custom table i also got the below wornings :
    Enhancement category for table missing
    Enhancement category for include or subtype missing
    but i activated the table without solving the wornings and they are working fine. So i am not sure whether it is necessary to solve those .

  • How to update fields in the target table in correspondance with the source file values

    Environment: win7, SQL server 2008 R2
    Application: Microsoft Management SQL Studio 2008 R2, Business Intelligence 2008 - SSIS
    SSIS competency level: Novice
    Problem: I have been trying to update some of the fields in the destination table,student table, in reference to data set in the staging table and ssn table.  I was able to insert/load new data to the destination using look up transformation
    while the driver is ssn (data mapping) but i couldn't know how to update some of the fields in the student table while keeping the orignal pn_id of both tables(ssn and student tables), because pn_id already exists in the SSN table and student table. There
    are other records also associated with the pn_id so I am not allowed to update the pn_id in the destination tables. For example,
    SSN Table (pn_id,ssn)
    ('000616850',288258466)
    ('002160790',176268917)
    Staging Table (ssn, id, pn_id, name, subject, academic year, comments)
    (288258466, 1001, '770616858',Sally Johnson, English,A, 2005,'great student')
    (176268917, 1002, '192160792',Will Smith, Math,38000,C, 2014,'no comments')
    (444718562, 1003, '260518681',Mike Lira, Math,38000,B, 2013,'no comments')
    Student Table (destination table)(id,pn_id,subject,academic year, grade, comments):
    (1001, '000616850', ' ',' ', ,'')
    (1002, '002160790', ' ',' ', ,'')
    Expected Results:
    My goal is to have student table updated as the following:
    Student Table
    (1001, '000616850', 'English','A' ,2005 ,'great student')
    (1002, '002160790', 'Math ',' C',2014 ,'no comments')
    please advise

    Why can't you use simple UPDATE command in EXECUTE SQL Task as below,
    DROP TABLE SSN
    DROP TABLE STAGING
    DROP TABLE STUDENT
    CREATE TABLE SSN(pn_id VARCHAR(100),ssn BIGINT)
    INSERT INTO SSN VALUES('000616850',288258466)
    INSERT INTO SSN VALUES('002160790',176268917)
    CREATE TABLE Staging (ssn BIGINT, id INT, pn_id BIGINT, name VARCHAR(100), subject VARCHAR(100),grade VARCHAR(10), [academic year] INT, comments VARCHAR(100))
    INSERT INTO Staging VALUES(288258466, 1001, '770616858','Sally Johnson', 'English','A', 2005,'great student')
    INSERT INTO Staging VALUES(176268917, 1002, '192160792','Will Smith', 'Math','C', 2014,'no comments')
    INSERT INTO Staging VALUES(444718562, 1003, '260518681','Mike Lira', 'Math','B', 2013,'no comments')
    CREATE TABLE Student(id INT,pn_id BIGINT,subject VARCHAR(100), [academic year] INT, grade VARCHAR(10), comments VARCHAR(100) )
    INSERT INTO Student VALUES(1001, '000616850', NULL,NULL,NULL ,NULL)
    INSERT INTO Student VALUES(1002, '002160790', NULL,NULL,NULL ,NULL)
    UPDATE Student SET Subject = C.Subject, [academic year]=C.[academic year], grade=C.grade,comments=C.comments
    FROM SSN A INNER JOIN Student B
    ON A.pn_id=B.pn_id INNER JOIN Staging C
    ON A.ssn = C.ssn
    SELECT * FROM Student
    Regards, RSingh

  • How to  fill  fields in the script ..

    Hai
    I wanted to make sap script which have excise details .
    It has total 17 fields .. the standard example is J_2i_rg1 is the standard sap form.
    and program name is j_2irrg1 . my out put will also similar to this ..
    my problem is how i have to fill all the filelds in custom script. and how to allign correctly .
    Please let me know .... tell me step by   step procedure
    Thankyou.
    Regards
    Harsha

    Hi,
    Are you copying the driver program and SAP print form from the standard one. If you are just making your custom form and not the driver program then you can directly use the data which is fetched by program.
    For fetching extra info which is standard prog is not fetching you can make use of PERFORM command. Follow below link:-
    [Perform_in_Script|http://help.sap.com/saphelp_40b/helpdata/en/d1/803279454211d189710000e8322d00/content.htm]
    Alignment is done through the proper use of TABS. Refer below link for Alignment issues:-
    [SAP_SCRIPT|http://wiki.sdn.sap.com/wiki/display/ABAP/SAPscript]
    Hope it helps.
    Thanks,
    Daya

  • How to handle Changes in the Structure of Outbound Message.

    Hi Experts,
    I have a File2RFC scenario where the Outbound Message fields are (for e.g,) ID,Name,Loc, and Status. The structure of the xml file which needs to be picked by sender file adapter is changing each time based on the data entered by the user. I am sure this will fail in IS with RuntimeException in Message-Mapping transformation Error. Is there anyway to handle this kind of situation.
    Message Sample- 1 (Message Processed successfully as it contains all the 4 fields...)
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:MT_Send xmlns:ns0="http://File2File">
       <root>
          <ID>1234</VesselID>
          <Name>PIUSER</VesselName>
          <Loc>System A</Type>
          <Status>1</Status>
       </root>
    </ns0:MT_Send>
    Message Sample-  2 (Message Failed with Runtime Mapping Exception in IS...'Loc' is missing)
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:MT_Send xmlns:ns0="http://File2File">
       <root>
          <ID>5678</VesselID>
          <Name>SAPUSER</VesselName>
          <Status>2</Status>
       </root>
    </ns0:MT_Send>

    Hi Ravi,
    Thanks for the reply. I think changing the cardinality will not solve this issue. Because the file which is being picked by Sender file Adapter is changing its structure everytime based upon the values entired by the user.
    For example - In Message 1 User has entered all the 4 values...so the structure is full.
    Message Sample- 1 (Message Processed successfully as it contains all the 4 fields...)
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:MT_Send xmlns:ns0="http://File2File">
    <root>
    <ID>1234</VesselID>
    <Name>PIUSER</VesselName>
    <Loc>System A</Type>
    <Status>1</Status>
    </root>
    </ns0:MT_Send>
    In Message 2 - user has entered only 3 values...Though I have kept Loc as 0 to Unbound it fails as there is no tag <LOC></Loc> here.
    Message Sample- 2 (Message Failed with Runtime Mapping Exception in IS...'Loc' Tag is missing)
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:MT_Send xmlns:ns0="http://File2File">
    <root>
    <ID>5678</VesselID>
    <Name>SAPUSER</VesselName>
    <Status>2</Status>
    </root>
    </ns0:MT_Send>

  • How to read fields of a structure or Table.

    Hi,
      I had a requirement where i will send a structure/table name into a Form(Subroutine). This form fills an internal table with all the fields in that structure/table .
          Does any one could suggest any programming method to access the field names of structure/table.
          Please don't suggest any database tables, as the structures iam going to send need not exist in database.
         A quick reply is appreciated.
    Thanks in Advance,
    Anvitha.

    HI Anvitha,
    You can use function REUSE_ALV_FIELDCATALOG_MERGE to get the field names and attributes.
    REPORT test.
    TYPE-POOLS : slis.
    DATA : BEGIN OF itab1,
           f1     LIKE vbak-vbeln,
           f2     LIKE vbap-posnr,
           f3     LIKE vbak-netwr,
           END OF itab1.
    DATA : rep TYPE sy-repid      .
    DATA : fcat TYPE  slis_t_fieldcat_alv.
    rep = sy-repid.
    CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
    EXPORTING
       i_program_name               = rep
       i_internal_tabname           = 'ITAB1'
      I_STRUCTURE_NAME             = 'ITAB1'
       i_client_never_display       = 'X'
       i_inclname                   = rep
      I_BYPASSING_BUFFER           =
      I_BUFFER_ACTIVE              =
      CHANGING
        ct_fieldcat                  = fcat
    EXCEPTIONS
      INCONSISTENT_INTERFACE       = 1
      PROGRAM_ERROR                = 2
      OTHERS                       = 3
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    the internal table fcat will have field names and attributes of internal table.
    Reagrds,
    Gagan

  • Can not refer to a field in the structure INCLUDE

    Hi gurus,
    I have tried to declare an internal table like ( SAP standard )
    DATA: BEGIN OF OBJECT_TAB OCCURS 0.
            INCLUDE STRUCTURE RQMQMEL1.
    DATA:   SELECTED,
            PM_SELECTED TYPE PM_SELECTED,
            LIGHTS,
    "add some more fields
          END OF OBJECT_TAB.
    But then i can not reference to this structure for the field QMNUM in the INCLUDE STRUCTURE RQMQMEL1.
    I refer by l_qmnum = object_tab-qmnum . It show an error message like " This field can not be found in this table"
    Could you suggest me a solution for this
    Thanks

    Hi,
    Sorry for the wrong suggestion.  Please check the help of Include. It specifies as follows:
    Even if the structure rec that you want to define contains extra components, do not use
    DATA: BEGIN OF rec,
            INCLUDE STRUCTURE s.
    DATA:   ...
          END OF rec.
    Instead, use
    DATA: BEGIN OF rec,
            rec LIKE s,
          END OF rec.
    You can then address s as a substructure of rec.
    Note
    Although "INCLUDE STRUCTURE s." expands the substructure s into its components, its alignment remains unchanged. This means that there may be extra fields inserted as padding before the first component or after the last component of s within rec.

  • How convert pdf without damage the structure original file

    I have a issue, when I converted a excel document to PDF this document damage the structure , I have 3 tables and it is disorganized. How can I conserve the original organization??

    Before you convert, set the print to the Adobe PDF printer and be sure that the print preview and settings in Excel show correctly. Excel reflows based on the printer.

Maybe you are looking for

  • I am looking for a FREE Video converter

    After spending $300 on an 30g ipod video, i don't have much money in my account to buy a video converter. Are there any free, or cheap (under $15)converters to convert mpeg's and much more?

  • BI Publisher in OBIEE ANSWERS:

    HI , I am created simple report in OBIEE . Write the query in 'ANSWERS' that query is simple query, It's dont have a dynamic parameters. so the simple report is working or runned. next am try to give the dynamic parameters in that query. *(ex query)

  • TS3899 iphone 4S doesnt send / receive email while on Cellular network, any help?

    even though all other apps and safari are active ! while on wifi it works but still i have to manually retrieve while all my settings are on PUSH. tried all classic solutions, from hard reset to removing and readding the email accounts any help?

  • Transformation in osb

    Hi, I have a senario where i need to transform element in request packet. EG. In the request packet I have a element <FullName>sam.sung</FullName> In the response i need to change it to <FirstName>sam</FirstName> <LastName>sung</LastName> How to go a

  • InDesign CC 7 crashes when network connection is lost.

    Hi all, I'm trying to troubleshoot an issue with InDesign CC7. I tend to work on documents from our server at work, and each time the network connection is interrupted (I undock my laptop to walk around, switchover from wireless to wired, brief hiccu